You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In rustup I have a rustup crate that depends on a rustup-dist crate.
In the Cargo.toml for rustup-dist I have:
[dev-dependencies]
url = "1.1.0"
And in my 'tests' folder tests with import the url crate.
When I run tests from the 'workspace' level with cargo test -p rustup-dist the url crate does not resolve, but if I cd into the rustup-dist directory and run cargo test it works correctly.
The text was updated successfully, but these errors were encountered:
In rustup I have a
rustup
crate that depends on arustup-dist
crate.In the Cargo.toml for rustup-dist I have:
And in my 'tests' folder tests with import the url crate.
When I run tests from the 'workspace' level with
cargo test -p rustup-dist
the url crate does not resolve, but if Icd
into therustup-dist
directory and runcargo test
it works correctly.The text was updated successfully, but these errors were encountered: