diff --git a/beam-lib/Cargo.toml b/beam-lib/Cargo.toml index 3d82262c..bb1348d6 100644 --- a/beam-lib/Cargo.toml +++ b/beam-lib/Cargo.toml @@ -10,7 +10,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" uuid = { version = "1", features = ["v4", "serde"] } reqwest = { version = "0.12", features = ["json"], default-features = false, optional = true } -thiserror = { version = "1.0", optional = true } +thiserror = { version = "2.0", optional = true } [features] strict-ids = [] diff --git a/broker/Cargo.toml b/broker/Cargo.toml index b8ebf746..5fd6554e 100644 --- a/broker/Cargo.toml +++ b/broker/Cargo.toml @@ -19,7 +19,7 @@ axum = { version = "0.7", features = [ "query" ] } dashmap = "6.0" anyhow = "1" -thiserror = "1" +thiserror = "2" # Subscriber is setup through shared tracing = "0.1" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 1d9caa4e..a92a1864 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -40,7 +40,7 @@ jwt-simple = "0.11" once_cell = "1" # Error handling -thiserror = "1" +thiserror = "2" # Command Line Interface clap = { version = "4", features = ["env", "derive"] }