Skip to content

Commit

Permalink
[#98] Move CLI dependencies to workspace Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
orecham committed May 24, 2024
1 parent 2bdf0c2 commit 27ac5a6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,16 @@ iceoryx2-cal = { version = "0.3.0", path = "iceoryx2-cal" }

iceoryx2 = { version = "0.3.0", path = "iceoryx2/" }

better-panic = { version = "0.3.0" }
bindgen = { version = "0.65.1" }
bitflags = { version = "1.3.2" }
cc = { version = "1.0" }
cdr = { version = "0.2.4" }
clap = { version = "3.2.25", features = ["derive"] }
clap = { version = "4.4.18", features = ["derive"] }
colored = { version = "2.1" }
enum-iterator = { version = "1.2.0" }
generic-tests = { version = "0.1.2" }
human-panic = { version = "1.2.3" }
lazy_static = { version = "1.4.0" }
log = { version = "0.4.20" }
once_cell = { version = "1.16.0" }
Expand All @@ -79,6 +82,7 @@ pin-init = { version = "0.2.0" }
serde = { version = "1.0.139", features = ["derive"] }
sha1_smol = { version = "1.0.0" }
termsize = { version = "0.1" }
thiserror = { version = "1.0.56" }
tiny-fn = { version = "0.1.5" }
toml = { version = "0.5.9" }
tracing = { version = "0.1.40" }
Expand Down
10 changes: 5 additions & 5 deletions iceoryx2-cli/iox2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ rust-version = { workspace = true }
version = { workspace = true }

[dependencies]
human-panic = "1.2.3"
better-panic = "0.3.0"
clap = { version = "4.4.18", features = ["derive"] }
colored = "2.1"
thiserror = "1.0.56"
human-panic = { workspace = true }
better-panic = { workspace = true }
clap = { workspace = true }
colored = { workspace = true }
thiserror = { workspace = true }

0 comments on commit 27ac5a6

Please sign in to comment.