diff --git a/Cargo.toml b/Cargo.toml index b94b850..7afd6dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/worker/Cargo.toml b/worker/Cargo.toml index 7d8d599..28b656a 100644 --- a/worker/Cargo.toml +++ b/worker/Cargo.toml @@ -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