diff --git a/Cargo.lock b/Cargo.lock index 21e25e1..360706a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1819,9 +1819,9 @@ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" [[package]] name = "sysinfo" -version = "0.32.1" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af" +checksum = "948512566b1895f93b1592c7574baeb2de842f224f2aab158799ecadb8ebbb46" dependencies = [ "core-foundation-sys", "libc", diff --git a/Cargo.toml b/Cargo.toml index 7df6879..acb944b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ log = "0.4.22" rsjudge-traits = { version = "0.1.0", path = "crates/rsjudge-traits" } rsjudge-utils = { version = "0.1.0", path = "crates/rsjudge-utils" } serde = { version = "1.0.215", features = ["derive"] } -tokio = "1.41.1" +tokio = "1.42.0" [package] name = "rsjudge" @@ -160,12 +160,12 @@ rsjudge-grpc = { version = "0.1.0", path = "crates/rsjudge-grpc", optional = tru rsjudge-rest = { version = "0.1.0", path = "crates/rsjudge-rest", optional = true } anyhow = "1.0.94" -clap = { version = "4.5.22", features = ["derive"] } +clap = { version = "4.5.23", features = ["derive"] } env_logger = "0.11.5" log.workspace = true mimalloc = { version = "0.1.43", optional = true } serde.workspace = true -sysinfo = { version = "0.32.1", features = ["serde"] } +sysinfo = { version = "0.33.0", features = ["serde"] } tokio = { workspace = true, features = ["fs", "rt-multi-thread", "macros", "process"] } toml = "0.8.19" @@ -181,7 +181,7 @@ mimalloc = ["dep:mimalloc"] default = ["grpc", "rest", "mimalloc"] [build-dependencies] -clap = { version = "4.5.22", features = ["derive"] } +clap = { version = "4.5.23", features = ["derive"] } clap_complete = "4.5.38" clap_mangen = "0.2.24" diff --git a/crates/rsjudge-amqp/Cargo.toml b/crates/rsjudge-amqp/Cargo.toml index 6645fb4..942cca8 100644 --- a/crates/rsjudge-amqp/Cargo.toml +++ b/crates/rsjudge-amqp/Cargo.toml @@ -12,7 +12,7 @@ rust-version.workspace = true [dependencies] amqprs = { version = "2.1.0", features = ["urispec"] } thiserror = "2.0.4" -tokio = "1.41.1" +tokio = "1.42.0" rsjudge-traits.workspace = true serde = { workspace = true, optional = true } diff --git a/crates/rsjudge-runner/Cargo.toml b/crates/rsjudge-runner/Cargo.toml index f64805d..74e572a 100644 --- a/crates/rsjudge-runner/Cargo.toml +++ b/crates/rsjudge-runner/Cargo.toml @@ -21,7 +21,7 @@ rsjudge-traits.workspace = true rsjudge-utils.workspace = true thiserror = "2.0.4" tokio = { workspace = true, features = ["process", "sync", "time", "signal"] } -tokio-util = "0.7.12" +tokio-util = "0.7.13" uzers = "0.12.1" [dev-dependencies] diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 59a38a1..1e023c3 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -12,7 +12,7 @@ description = "A task runner for cargo workspaces" [dependencies] anyhow = "1.0.94" -clap = { version = "4.5.22", features = ["derive"] } +clap = { version = "4.5.23", features = ["derive"] } sh = "0.2.1" [features]