Support specifying OUT_DIR in json project

This commit is contained in:
Emil Lauridsen 2020-03-16 14:17:32 +01:00
parent f5a2fcf8f5
commit 4fb79f2ca0
2 changed files with 22 additions and 3 deletions

View file

@ -22,6 +22,7 @@ pub struct Crate {
pub(crate) deps: Vec<Dep>,
pub(crate) atom_cfgs: FxHashSet<String>,
pub(crate) key_value_cfgs: FxHashMap<String, String>,
pub(crate) out_dir: Option<PathBuf>,
}
#[derive(Clone, Copy, Debug, Deserialize)]