diff --git a/Cargo.lock b/Cargo.lock index 9a106f1..c5f2570 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1493,7 +1493,7 @@ dependencies = [ "amqprs", "rsjudge-traits", "serde", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", ] @@ -1555,7 +1555,7 @@ dependencies = [ "rsjudge-traits", "rsjudge-utils", "rustversion", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "tokio-util", "uzers", @@ -1580,7 +1580,7 @@ dependencies = [ "anyhow", "log", "shell-words", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", ] @@ -1856,11 +1856,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.6" +version = "2.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47" +checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767" dependencies = [ - "thiserror-impl 2.0.6", + "thiserror-impl 2.0.7", ] [[package]] @@ -1876,9 +1876,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.6" +version = "2.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312" +checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36" dependencies = [ "proc-macro2", "quote", diff --git a/crates/rsjudge-amqp/Cargo.toml b/crates/rsjudge-amqp/Cargo.toml index ebfd143..b4772b4 100644 --- a/crates/rsjudge-amqp/Cargo.toml +++ b/crates/rsjudge-amqp/Cargo.toml @@ -11,7 +11,7 @@ rust-version.workspace = true [dependencies] amqprs = { version = "2.1.0", features = ["urispec"] } -thiserror = "2.0.6" +thiserror = "2.0.7" tokio = "1.42.0" rsjudge-traits.workspace = true diff --git a/crates/rsjudge-runner/Cargo.toml b/crates/rsjudge-runner/Cargo.toml index 2f7e306..7bc5f47 100644 --- a/crates/rsjudge-runner/Cargo.toml +++ b/crates/rsjudge-runner/Cargo.toml @@ -19,7 +19,7 @@ log.workspace = true nix = { version = "0.29.0", features = ["user", "resource", "process"] } rsjudge-traits.workspace = true rsjudge-utils.workspace = true -thiserror = "2.0.6" +thiserror = "2.0.7" tokio = { workspace = true, features = ["process", "sync", "time", "signal"] } tokio-util = "0.7.13" uzers = "0.12.1" diff --git a/crates/rsjudge-utils/Cargo.toml b/crates/rsjudge-utils/Cargo.toml index ee90452..d71c3fd 100644 --- a/crates/rsjudge-utils/Cargo.toml +++ b/crates/rsjudge-utils/Cargo.toml @@ -12,7 +12,7 @@ rust-version.workspace = true [dependencies] log.workspace = true shell-words = "1.1.0" -thiserror = "2.0.6" +thiserror = "2.0.7" tokio = { workspace = true, features = ["process", "macros", "rt-multi-thread"] } [dev-dependencies]