-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
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
multi-package dependency management #7805
Comments
cargo should support multi-package dependency management, just like the 'dependencyManagement' tag provided by maven |
Unfortunately I'm not too familiar with Maven. From what I understand, Generally using |
Without more information, I'm going to close this. If you have a more detailed proposal, feel free to leave a comment. |
The idea of the For instance: Cargo.toml [workspace]
members = [
"a",
"b"
]
[dependencies.diesel]
version = "1.4.4" a/Cargo.toml [package]
name = "a"
[dependencies]
diesel = "something to mark that we want to use the version defined in the super Cargo.toml" |
@ehuss You are absolutely right! I am interested. :) Thanks for sharing. |
cargo should support multi-package dependency management, just like the tag provided by maven
The text was updated successfully, but these errors were encountered: