Skip to content
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

Pin clap to ~3.1 #618

Merged
merged 1 commit into from Jun 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion arci-speak-audio/Cargo.toml
Expand Up @@ -16,6 +16,6 @@ tracing = { version = "0.1", features = ["log"] }
tokio = { version = "1", features = ["sync", "parking_lot"] }

[dev-dependencies]
clap = { version = "3.1", features = ["derive"] }
clap = { version = "~3.1", features = ["derive"] }
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can now be reverted as deprecations are now off by default, see clap-rs/clap#3830 for details. When you do start working through the deprecations as part of upgrading to 4.0, we've also improved the warnings for derive users. See clap-rs/clap#3832 for examples.

tokio = { version = "1.0", features = ["full"] }
tracing-subscriber = "0.3"
2 changes: 1 addition & 1 deletion arci-speak-cmd/Cargo.toml
Expand Up @@ -14,6 +14,6 @@ thiserror = "1.0"
tokio = { version = "1", features = ["sync", "parking_lot"] }

[dev-dependencies]
clap = { version = "3.1", features = ["derive"] }
clap = { version = "~3.1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tracing-subscriber = "0.3"
4 changes: 2 additions & 2 deletions openrr-apps/Cargo.toml
Expand Up @@ -28,8 +28,8 @@ arci-gamepad-gilrs = "0.0.6"
arci-speak-audio = "0.0.6"
arci-speak-cmd = "0.0.6"
arci-urdf-viz = "0.0.6"
clap = { version = "3.1", features = ["derive"] }
clap_complete = "3"
clap = { version = "~3.1", features = ["derive"] }
clap_complete = "~3.1"
k = "0.28"
openrr-client = { version = "0.0.6", default-features = false }
openrr-command = { version = "0.0.6", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions openrr-command/Cargo.toml
Expand Up @@ -15,8 +15,8 @@ assimp = ["openrr-client/assimp"]
[dependencies]
arci = "0.0.6"
async-recursion = "1.0"
clap = { version = "3.1", features = ["derive"] }
clap_complete = "3"
clap = { version = "~3.1", features = ["derive"] }
clap_complete = "~3.1"
k = "0.28"
openrr-client = { version = "0.0.6", default-features = false }
rustyline = "9.0.0"
Expand Down
2 changes: 1 addition & 1 deletion openrr-planner/Cargo.toml
Expand Up @@ -30,7 +30,7 @@ urdf-rs = "0.6"

[dev-dependencies]
assert_approx_eq = "1.1"
clap = { version = "3.1", features = ["derive"] }
clap = { version = "~3.1", features = ["derive"] }
nalgebra = "0.30"
tracing-subscriber = "0.3"
urdf-viz = "0.37"
2 changes: 1 addition & 1 deletion openrr-teleop/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ assimp = ["openrr-client/assimp"]
arci = "0.0.6"
async-trait = "0.1"
auto_impl = "1.0.0"
clap = { version = "3.1", features = ["derive"] }
clap = { version = "~3.1", features = ["derive"] }
k = "0.28"
openrr-client = { version = "0.0.6", default-features = false }
openrr-command = { version = "0.0.6", default-features = false }
Expand Down