diff --git a/Cargo.lock b/Cargo.lock index 3d9378b..f4d4344 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1493,7 +1493,7 @@ dependencies = [ "amqprs", "rsjudge-traits", "serde", - "thiserror 2.0.4", + "thiserror 2.0.6", "tokio", ] @@ -1555,7 +1555,7 @@ dependencies = [ "rsjudge-traits", "rsjudge-utils", "rustversion", - "thiserror 2.0.4", + "thiserror 2.0.6", "tokio", "tokio-util", "uzers", @@ -1580,7 +1580,7 @@ dependencies = [ "anyhow", "log", "shell-words", - "thiserror 2.0.4", + "thiserror 2.0.6", "tokio", ] @@ -1856,11 +1856,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.4" +version = "2.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f49a1853cf82743e3b7950f77e0f4d622ca36cf4317cba00c767838bac8d490" +checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47" dependencies = [ - "thiserror-impl 2.0.4", + "thiserror-impl 2.0.6", ] [[package]] @@ -1876,9 +1876,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.4" +version = "2.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8381894bb3efe0c4acac3ded651301ceee58a15d47c2e34885ed1908ad667061" +checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312" dependencies = [ "proc-macro2", "quote", diff --git a/crates/rsjudge-amqp/Cargo.toml b/crates/rsjudge-amqp/Cargo.toml index 942cca8..ebfd143 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.4" +thiserror = "2.0.6" tokio = "1.42.0" rsjudge-traits.workspace = true diff --git a/crates/rsjudge-runner/Cargo.toml b/crates/rsjudge-runner/Cargo.toml index 74e572a..2f7e306 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.4" +thiserror = "2.0.6" 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 bc0397e..ee90452 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.4" +thiserror = "2.0.6" tokio = { workspace = true, features = ["process", "macros", "rt-multi-thread"] } [dev-dependencies]