From 809a8d4b683509a597c16a035ffc9aad6e8cc4d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 06:03:36 +0000 Subject: [PATCH] Bump thiserror from 2.0.3 to 2.0.6 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 2.0.3 to 2.0.6. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.3...2.0.6) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++----------- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- client/Cargo.toml | 2 +- migration/Cargo.toml | 2 +- test-support/Cargo.toml | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3cdf05b6..9a069326 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1414,7 +1414,7 @@ dependencies = [ "sha2 0.10.8", "subtle", "test-support", - "thiserror 2.0.3", + "thiserror 2.0.6", "time", "tokio", "tracing", @@ -1470,7 +1470,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "thiserror 2.0.3", + "thiserror 2.0.6", "time", "tokio", "trillium-rustls", @@ -1497,7 +1497,7 @@ dependencies = [ "serde", "serde_json", "test-support", - "thiserror 2.0.3", + "thiserror 2.0.6", "time", "trillium", "trillium-client", @@ -2708,7 +2708,7 @@ dependencies = [ "prio", "rand", "serde", - "thiserror 2.0.3", + "thiserror 2.0.6", "url", ] @@ -2887,7 +2887,7 @@ dependencies = [ "sea-orm", "sea-orm-migration", "serde_json", - "thiserror 2.0.3", + "thiserror 2.0.6", "time", "tracing", "tracing-subscriber", @@ -5051,7 +5051,7 @@ dependencies = [ "serde", "serde_json", "test-harness", - "thiserror 2.0.3", + "thiserror 2.0.6", "time", "tracing", "tracing-log", @@ -5078,11 +5078,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.3" +version = "2.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" +checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47" dependencies = [ - "thiserror-impl 2.0.3", + "thiserror-impl 2.0.6", ] [[package]] @@ -5098,9 +5098,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.3" +version = "2.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" +checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 222581c0..17c381e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ serde_json = "1.0.133" serde_path_to_error = "0.1.16" sha2 = "0.10.8" subtle = "2.6.1" -thiserror = "2.0.3" +thiserror = "2.0.6" time = { version = "0.3.36", features = ["serde", "serde-well-known"] } tokio = { version = "1.41.1", features = ["full"] } tracing = "0.1.41" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 986d3c9b..48f98c1b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -25,7 +25,7 @@ path = "src/main.rs" [dependencies] anyhow = "1" clap = { version = "4.5.21", features = ["derive", "env"] } -thiserror = "2.0.3" +thiserror = "2.0.6" divviup-client = { workspace = true } trillium-rustls = { version = "0.8.1", default-features = false } trillium-tokio = "0.4.0" diff --git a/client/Cargo.toml b/client/Cargo.toml index 541d012c..100fffd5 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -18,7 +18,7 @@ email_address = "0.2.9" prio = "0.16" serde = { version = "1.0.215", features = ["derive"] } serde_json = "1.0.133" -thiserror = "2.0.3" +thiserror = "2.0.6" trillium-client = { version = "0.6.2", features = ["json"] } trillium-http = "0.3.14" url = { version = "2.5.2", features = ["serde"] } diff --git a/migration/Cargo.toml b/migration/Cargo.toml index a3398d47..ce633b21 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -14,7 +14,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } clap = { version = "4.5.21", features = ["env", "derive"] } sea-orm = "1.0.1" serde_json = "1.0.133" -thiserror = "2.0.3" +thiserror = "2.0.6" time = "0.3.36" tracing = "0.1.41" tracing-subscriber = "0.3.19" diff --git a/test-support/Cargo.toml b/test-support/Cargo.toml index ab2253c4..85133770 100644 --- a/test-support/Cargo.toml +++ b/test-support/Cargo.toml @@ -13,7 +13,7 @@ trillium-testing = { version = "0.7.0", features = ["tokio"] } divviup-api.workspace = true serde = "1.0.215" serde_json = "1.0.133" -thiserror = "2.0.3" +thiserror = "2.0.6" tracing = "0.1.41" tracing-log = "0.2.0" tracing-subscriber = { version = "0.3.19", features = [