We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cargo.toml contains
aquamarine = { version = "0.1.13", path = "../aquamarine" }
Changing this line to:
aquamarine = { version = "^0.4"}
allowed cargo run to complete normally.
Without the change you get:
cargo run error: failed to get aquamarine as a dependency of package rust-vue v0.1.0 (/work/suites/rust-vue-demo/worktrees/main/rust-vue-demo)
aquamarine
rust-vue v0.1.0 (/work/suites/rust-vue-demo/worktrees/main/rust-vue-demo)
Caused by: failed to load source for dependency aquamarine
Caused by: Unable to update /work/suites/rust-vue-demo/worktrees/main/aquamarine
Caused by: failed to read /work/suites/rust-vue-demo/worktrees/main/aquamarine/Cargo.toml
/work/suites/rust-vue-demo/worktrees/main/aquamarine/Cargo.toml
Caused by: No such file or directory (os error 2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Cargo.toml contains
aquamarine = { version = "0.1.13", path = "../aquamarine" }
Changing this line to:
aquamarine = { version = "^0.4"}
allowed cargo run to complete normally.
Without the change you get:
cargo run
error: failed to get
aquamarine
as a dependency of packagerust-vue v0.1.0 (/work/suites/rust-vue-demo/worktrees/main/rust-vue-demo)
Caused by:
failed to load source for dependency
aquamarine
Caused by:
Unable to update /work/suites/rust-vue-demo/worktrees/main/aquamarine
Caused by:
failed to read
/work/suites/rust-vue-demo/worktrees/main/aquamarine/Cargo.toml
Caused by:
No such file or directory (os error 2)
The text was updated successfully, but these errors were encountered: