Skip to content

Commit

Permalink
chore: move clap to workespace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hunjixin committed Aug 5, 2024
1 parent f5d2630 commit ea10e63
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ mongodb = {version="3.0.1"}
chrono = "0.4"
async-trait = "0.1.81"
futures = "0.3.30"
clap = {version="4.5.7", features=["derive"]}

[package]
name = "jz_action"
Expand All @@ -52,6 +53,7 @@ tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
tokio-retry = {workspace = true}
tokio-stream = {workspace = true}

clap = {workspace = true}
uuid = {workspace = true}
anyhow = {workspace = true}
tracing = {workspace = true}
Expand Down
2 changes: 1 addition & 1 deletion crates/compute_unit_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ uuid = {workspace = true}
mongodb = {workspace = true}
async-trait = {workspace = true}
chrono = {workspace = true}
clap = {workspace = true}

clap = {version="4.5.7", features=["derive"]}
actix-web = "4.8.0"
hyperlocal = "0.9.1"
hyper = "1.4.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/dp_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tonic = {workspace = true}
uuid = {workspace = true}
async-trait = {workspace = true}
chrono = {workspace = true}
clap = {workspace = true}

clap = {version="4.5.7", features=["derive"]}
rand = "0.8.5"
walkdir = "2.5.0"
2 changes: 1 addition & 1 deletion nodes/copy_in_place/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ anyhow = {workspace = true}
tracing = {workspace = true}
tracing-subscriber = {workspace = true}
tokio-util = {workspace = true}
clap = {workspace = true}

clap = {version="4.5.7", features=["derive"]}
random_word = { version = "0.4.3", features = ["en"] }
2 changes: 1 addition & 1 deletion nodes/dummy_in/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ anyhow = {workspace = true}
tracing = {workspace = true}
tracing-subscriber = {workspace = true}
tokio-util = {workspace = true}
clap = {workspace = true}

clap = {version="4.5.7", features=["derive"]}
random_word = { version = "0.4.3", features = ["en"] }
3 changes: 2 additions & 1 deletion nodes/dummy_out/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ tokio-util = {workspace = true}
anyhow = {workspace = true}
tracing = {workspace = true}
tracing-subscriber = {workspace = true}
clap = {version="4.5.7", features=["derive"]}
clap = {workspace = true}

walkdir = "2.5.0"
2 changes: 1 addition & 1 deletion nodes/jz_reader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ tokio-util = {workspace = true}
anyhow = {workspace = true}
tracing = {workspace = true}
tracing-subscriber = {workspace = true}
clap = {version="4.5.7", features=["derive"]}
clap = {workspace = true}
3 changes: 2 additions & 1 deletion nodes/jz_writer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ tokio-util = {workspace = true}
anyhow = {workspace = true}
tracing = {workspace = true}
tracing-subscriber = {workspace = true}
clap = {version="4.5.7", features=["derive"]}
clap = {workspace = true}

walkdir = "2.5.0"

0 comments on commit ea10e63

Please sign in to comment.