From 5829ac4b28d9fd45857b2707157fb749af860a85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 03:19:57 +0000 Subject: [PATCH] build(deps): bump thiserror from 1.0.69 to 2.0.18 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.69 to 2.0.18. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.69...2.0.18) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++------------ crates/coil-app/Cargo.toml | 2 +- crates/coil-assets/Cargo.toml | 2 +- crates/coil-cli/Cargo.toml | 2 +- crates/coil-config/Cargo.toml | 2 +- crates/coil-core/Cargo.toml | 2 +- crates/coil-data/Cargo.toml | 2 +- crates/coil-import/Cargo.toml | 2 +- crates/coil-observability/Cargo.toml | 2 +- crates/coil-ops/Cargo.toml | 2 +- crates/coil-report/Cargo.toml | 2 +- crates/coil-runtime/Cargo.toml | 2 +- crates/coil-storage/Cargo.toml | 2 +- crates/coil-tls/Cargo.toml | 2 +- crates/coil/Cargo.toml | 2 +- 15 files changed, 26 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4dbc7c9..c47be6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -500,7 +500,7 @@ dependencies = [ "coil-storage", "sha2", "tempfile", - "thiserror 1.0.69", + "thiserror 2.0.18", ] [[package]] @@ -553,7 +553,7 @@ dependencies = [ "reqwest 0.12.28", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 2.0.18", "tokio", "toml", "zanzibar", @@ -587,7 +587,7 @@ version = "0.1.1" dependencies = [ "ipnet", "serde", - "thiserror 1.0.69", + "thiserror 2.0.18", "toml", "url", ] @@ -613,7 +613,7 @@ dependencies = [ "hmac", "rand 0.8.5", "sha2", - "thiserror 1.0.69", + "thiserror 2.0.18", "toml", ] @@ -630,7 +630,7 @@ version = "0.1.1" dependencies = [ "coil-config", "sqlx", - "thiserror 1.0.69", + "thiserror 2.0.18", "tokio", ] @@ -703,7 +703,7 @@ name = "coil-observability" version = "0.1.1" dependencies = [ "coil-config", - "thiserror 1.0.69", + "thiserror 2.0.18", ] [[package]] @@ -715,7 +715,7 @@ dependencies = [ "coil-core", "coil-data", "coil-jobs", - "thiserror 1.0.69", + "thiserror 2.0.18", ] [[package]] @@ -723,7 +723,7 @@ name = "coil-report" version = "0.1.1" dependencies = [ "serde", - "thiserror 1.0.69", + "thiserror 2.0.18", ] [[package]] @@ -743,7 +743,7 @@ dependencies = [ "coil-memberships", "coil-ops", "coil-runtime", - "thiserror 1.0.69", + "thiserror 2.0.18", "tokio", ] @@ -782,7 +782,7 @@ dependencies = [ "serde_json", "sha2", "sqlx", - "thiserror 1.0.69", + "thiserror 2.0.18", "tokio", "toml", "tower", @@ -823,7 +823,7 @@ dependencies = [ "reqwest 0.12.28", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror 2.0.18", "tokio", "toml", "url", @@ -854,7 +854,7 @@ dependencies = [ "serde_json", "sha2", "sqlx", - "thiserror 1.0.69", + "thiserror 2.0.18", "tokio", ] diff --git a/crates/coil-app/Cargo.toml b/crates/coil-app/Cargo.toml index b448a8c..a994615 100644 --- a/crates/coil-app/Cargo.toml +++ b/crates/coil-app/Cargo.toml @@ -25,7 +25,7 @@ coil-template = { version = "0.1.1", path = "../coil-template" } coil-wasm = { version = "0.1.1", path = "../coil-wasm" } serde = { version = "1.0.228", features = ["derive"] } toml = "0.8.23" -thiserror = "2.0.17" +thiserror = "2.0.18" [dev-dependencies] coil-storage = { version = "0.1.1", path = "../coil-storage" } diff --git a/crates/coil-assets/Cargo.toml b/crates/coil-assets/Cargo.toml index 878a275..20472dd 100644 --- a/crates/coil-assets/Cargo.toml +++ b/crates/coil-assets/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" coil-auth = { version = "0.1.1", path = "../coil-auth" } coil-storage = { version = "0.1.1", path = "../coil-storage" } sha2 = "0.10" -thiserror = "1.0" +thiserror = "2.0" [dev-dependencies] coil-config = { version = "0.1.1", path = "../coil-config" } diff --git a/crates/coil-cli/Cargo.toml b/crates/coil-cli/Cargo.toml index 7e3bac8..c79daaf 100644 --- a/crates/coil-cli/Cargo.toml +++ b/crates/coil-cli/Cargo.toml @@ -37,7 +37,7 @@ coil-tls = { version = "0.1.1", path = "../coil-tls" } reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -thiserror = "1.0" +thiserror = "2.0" tokio = { version = "1", features = ["net", "rt", "rt-multi-thread"] } toml = "0.8" zanzibar = { workspace = true } diff --git a/crates/coil-config/Cargo.toml b/crates/coil-config/Cargo.toml index efcd548..c1572b1 100644 --- a/crates/coil-config/Cargo.toml +++ b/crates/coil-config/Cargo.toml @@ -13,6 +13,6 @@ readme = "README.md" [dependencies] ipnet = "2" serde = { version = "1.0", features = ["derive"] } -thiserror = "1.0" +thiserror = "2.0" toml = "0.8" url = { version = "2", features = ["serde"] } diff --git a/crates/coil-core/Cargo.toml b/crates/coil-core/Cargo.toml index 9d42c3b..f09b4f9 100644 --- a/crates/coil-core/Cargo.toml +++ b/crates/coil-core/Cargo.toml @@ -28,5 +28,5 @@ coil-wasm = { version = "0.1.1", path = "../coil-wasm" } hmac = "0.12" rand = "0.8" sha2 = "0.10" -thiserror = "1.0" +thiserror = "2.0" toml = "0.8" diff --git a/crates/coil-data/Cargo.toml b/crates/coil-data/Cargo.toml index 05f2ea3..5b27888 100644 --- a/crates/coil-data/Cargo.toml +++ b/crates/coil-data/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] coil-config = { version = "0.1.1", path = "../coil-config" } sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -thiserror = "1.0" +thiserror = "2.0" [dev-dependencies] tokio = { version = "1", features = ["rt", "time"] } diff --git a/crates/coil-import/Cargo.toml b/crates/coil-import/Cargo.toml index 638d305..e1dcd1e 100644 --- a/crates/coil-import/Cargo.toml +++ b/crates/coil-import/Cargo.toml @@ -14,5 +14,5 @@ readme = "README.md" coil-report = { version = "0.1.1", path = "../coil-report" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -thiserror = "2.0.17" +thiserror = "2.0.18" toml = "0.8" diff --git a/crates/coil-observability/Cargo.toml b/crates/coil-observability/Cargo.toml index c695004..83fbd62 100644 --- a/crates/coil-observability/Cargo.toml +++ b/crates/coil-observability/Cargo.toml @@ -12,4 +12,4 @@ description = "Observability primitives for the Coil framework." readme = "README.md" [dependencies] coil-config = { version = "0.1.1", path = "../coil-config" } -thiserror = "1.0" +thiserror = "2.0" diff --git a/crates/coil-ops/Cargo.toml b/crates/coil-ops/Cargo.toml index a8716f2..3f85457 100644 --- a/crates/coil-ops/Cargo.toml +++ b/crates/coil-ops/Cargo.toml @@ -16,4 +16,4 @@ coil-config = { version = "0.1.1", path = "../coil-config" } coil-core = { version = "0.1.1", path = "../coil-core" } coil-data = { version = "0.1.1", path = "../coil-data" } coil-jobs = { version = "0.1.1", path = "../coil-jobs" } -thiserror = "1.0" +thiserror = "2.0" diff --git a/crates/coil-report/Cargo.toml b/crates/coil-report/Cargo.toml index 1a70a33..077c4f4 100644 --- a/crates/coil-report/Cargo.toml +++ b/crates/coil-report/Cargo.toml @@ -12,4 +12,4 @@ description = "Reporting helpers for the Coil framework." readme = "README.md" [dependencies] serde = { version = "1.0", features = ["derive"] } -thiserror = "1.0" +thiserror = "2.0" diff --git a/crates/coil-runtime/Cargo.toml b/crates/coil-runtime/Cargo.toml index a0ce1ac..6a9ff62 100644 --- a/crates/coil-runtime/Cargo.toml +++ b/crates/coil-runtime/Cargo.toml @@ -37,7 +37,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sqlx = { version = "0.7", default-features = false, features = ["postgres", "runtime-tokio-rustls"] } sha2 = "0.10" -thiserror = "1.0" +thiserror = "2.0" tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] } toml = "0.8" tower = { version = "0.5", features = ["util"] } diff --git a/crates/coil-storage/Cargo.toml b/crates/coil-storage/Cargo.toml index 8af541d..5b04c15 100644 --- a/crates/coil-storage/Cargo.toml +++ b/crates/coil-storage/Cargo.toml @@ -19,6 +19,6 @@ reqwest = { version = "0.12", default-features = false, features = ["rustls-tls" serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["rt", "rt-multi-thread"] } -thiserror = "1.0" +thiserror = "2.0" toml = "0.8" url = "2" diff --git a/crates/coil-tls/Cargo.toml b/crates/coil-tls/Cargo.toml index 40375be..a704120 100644 --- a/crates/coil-tls/Cargo.toml +++ b/crates/coil-tls/Cargo.toml @@ -23,5 +23,5 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sha2 = "0.10" sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -thiserror = "1.0" +thiserror = "2.0" tokio = { version = "1", features = ["rt-multi-thread", "time", "net"] } diff --git a/crates/coil/Cargo.toml b/crates/coil/Cargo.toml index 30024e5..75d4d53 100644 --- a/crates/coil/Cargo.toml +++ b/crates/coil/Cargo.toml @@ -27,5 +27,5 @@ coil-media = { version = "0.1.1", path = "../coil-media" } coil-memberships = { version = "0.1.1", path = "../coil-memberships" } coil-ops = { version = "0.1.1", path = "../coil-ops" } coil-runtime = { version = "0.1.1", path = "../coil-runtime" } -thiserror = "1.0" +thiserror = "2.0" tokio = { version = "1", features = ["net", "rt-multi-thread"] }