Skip to content

Commit

Permalink
chore: streamline workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lffg committed Apr 12, 2024
1 parent ba98427 commit b50f3cf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,25 @@ ctl.path = "ctl"
proto.path = "proto"
worker.path = "worker"
# External deps (keep alphabetically sorted)
axum = "0.7.4"
axum = "0.7"
bty = { version = "0.1.0-pre.1", features = ["uuid"] }
clap = { version = "4.5", features = ["derive"] }
chrono = { version = "0.4", default-features = false, features = [
"std",
"serde",
] }
eyre = "0.6.12"
reqwest = { version = "0.12.1" , features = ["json"] }
eyre = "0.6"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sysinfo = "0.30.7"
tokio = "1.36.0"
sysinfo = "0.30"
tokio = { version = "1.36", features = [
"macros",
"rt",
"rt-multi-thread",
"time",
"sync",
] }
uuid = { version = "1", features = ["serde", "v4"] }

[workspace.lints.clippy]
Expand Down
2 changes: 1 addition & 1 deletion worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ workspace = true
eyre.workspace = true
proto.workspace = true
sysinfo.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
tokio.workspace = true

0 comments on commit b50f3cf

Please sign in to comment.