-
Notifications
You must be signed in to change notification settings - Fork 95
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
Unify common deps to the same version in Cargo.toml of the worksppace #285
Conversation
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
protoc is needed in step `Build and install with feature`, as it by default uses gRPC. Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Due to hyperium/tonic#1345, we should update the rust compiler and project to support tonic 0.9 Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
…crypto https://doc.rust-lang.org/cargo/reference/features.html suggests that a question mark in the feature to ensure that this dependency will not be activated when nowhere else activates that. Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
clap derived arguments uses `-` but the arguments definition is required an undercore `_` Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
Any introduction about the |
@jiangliu The I tried with the command and it will do all the steps to publish a crate to ...
[dependencies.aes-gcm]
version = "0.10.2"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.13.0"
... That means all the Why I use |
This PR unifies common deps to the same version via
*.workspace = true
.This will help to maintain the dependencies of the whole workspace without fix them case by case.