diff options
| author | est31 <MTest31@outlook.com> | 2018-06-08 16:47:16 +0200 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2018-06-08 16:50:56 +0200 |
| commit | c28145d1adbb32340897a102c43f0a8d2cb58ee2 (patch) | |
| tree | 79e6b3ff34c8b3a844ab6a1c42f0afa7d6b3102b /src/bootstrap/lib.rs | |
| parent | c131bdcaff68d35f96e954baac4340206779335f (diff) | |
| download | rust-c28145d1adbb32340897a102c43f0a8d2cb58ee2.tar.gz rust-c28145d1adbb32340897a102c43f0a8d2cb58ee2.zip | |
rustbuild: generate full list of dependencies for metadata
Previously, we didn't send --features to our cargo metadata invocations, and thus missed some dependencies that we enable through the --features mechanism.
Diffstat (limited to 'src/bootstrap/lib.rs')
| -rw-r--r-- | src/bootstrap/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index d16d7a52065..6e77413f061 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -280,7 +280,8 @@ pub struct Build { struct Crate { name: Interned<String>, version: String, - deps: Vec<Interned<String>>, + deps: HashSet<Interned<String>>, + id: String, path: PathBuf, doc_step: String, build_step: String, |
