This repository has been archived by the owner on Jun 5, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 39
--no-dev-dependencies seems not working #65
Comments
sfackler
added a commit
that referenced
this issue
Dec 30, 2019
This both makes the crate compile way faster and avoids having to touch tons of unstable, undocumented cargo internals. This requires Rust 1.41 (the current beta) for some cargo-metadata features. There are some subtle differences in the new output (particularly in handling dependencies between crates in workspaces), but they're pretty minor. Closes #73 Closes #69 Closes #66 Closes #65 Closes #63 Closes #61 Closes #57 Closes #20
sfackler
added a commit
that referenced
this issue
Dec 30, 2019
This both makes the crate compile way faster and avoids having to touch tons of unstable, undocumented cargo internals. This requires Rust 1.41 (the current beta) for some cargo-metadata features. There are some subtle differences in the new output (particularly in handling dependencies between crates in workspaces), but they're pretty minor. Closes #73 Closes #69 Closes #66 Closes #65 Closes #63 Closes #61 Closes #57 Closes #20
sfackler
added a commit
that referenced
this issue
Dec 30, 2019
This both makes the crate compile way faster and avoids having to touch tons of unstable, undocumented cargo internals. This requires Rust 1.41 (the current beta) for some cargo-metadata features. There are some subtle differences in the new output (particularly in handling dependencies between crates in workspaces), but they're pretty minor. Closes #73 Closes #69 Closes #66 Closes #65 Closes #63 Closes #61 Closes #57 Closes #20
I confirmed v0.28 fixed this issue. Thank you! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Environment
Steps
cargo install cargo-tree
git clone https://github.com/rhysd/git-brws.git && cd git-brws
cargo tree --no-dev-dependencies
Expected
[dev-dependencies]
is not included in outputActual
I got this output.
[dev-dependencies]
was included. It seemed that output ofcargo tree
and ofcargo tree --no-dev-dependencies
were exactly the same.The text was updated successfully, but these errors were encountered: