diff --git a/Cargo.lock b/Cargo.lock index 33c0c29..e7a1cc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1490,7 +1490,7 @@ dependencies = [ "amqprs", "rsjudge-traits", "serde", - "thiserror 2.0.3", + "thiserror 2.0.4", "tokio", ] @@ -1552,7 +1552,7 @@ dependencies = [ "rsjudge-traits", "rsjudge-utils", "rustversion", - "thiserror 2.0.3", + "thiserror 2.0.4", "tokio", "tokio-util", "uzers", @@ -1577,7 +1577,7 @@ dependencies = [ "anyhow", "log", "shell-words", - "thiserror 2.0.3", + "thiserror 2.0.4", "tokio", ] @@ -1858,11 +1858,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.3" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" +checksum = "2f49a1853cf82743e3b7950f77e0f4d622ca36cf4317cba00c767838bac8d490" dependencies = [ - "thiserror-impl 2.0.3", + "thiserror-impl 2.0.4", ] [[package]] @@ -1878,9 +1878,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.3" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" +checksum = "8381894bb3efe0c4acac3ded651301ceee58a15d47c2e34885ed1908ad667061" dependencies = [ "proc-macro2", "quote", diff --git a/crates/rsjudge-amqp/Cargo.toml b/crates/rsjudge-amqp/Cargo.toml index 569f20c..6645fb4 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.3" +thiserror = "2.0.4" tokio = "1.41.1" rsjudge-traits.workspace = true diff --git a/crates/rsjudge-runner/Cargo.toml b/crates/rsjudge-runner/Cargo.toml index d7b45fc..5bc5a25 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.3" +thiserror = "2.0.4" tokio = { workspace = true, features = ["process", "sync", "time", "signal"] } tokio-util = "0.7.12" uzers = "0.12.1" diff --git a/crates/rsjudge-utils/Cargo.toml b/crates/rsjudge-utils/Cargo.toml index 0a8531c..f65f62d 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.3" +thiserror = "2.0.4" tokio = { workspace = true, features = ["process", "macros", "rt-multi-thread"] } [dev-dependencies]