From d0d8a214ce798b7a21106aa25499783cea34de77 Mon Sep 17 00:00:00 2001 From: Craig Disselkoen Date: Mon, 11 Nov 2024 07:02:21 -0800 Subject: [PATCH] update to thiserror 2 (#473) Signed-off-by: Craig Disselkoen --- cedar-drt/fuzz/Cargo.toml | 4 ++-- cedar-policy-generators/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cedar-drt/fuzz/Cargo.toml b/cedar-drt/fuzz/Cargo.toml index b3a922e87..c0765b33b 100644 --- a/cedar-drt/fuzz/Cargo.toml +++ b/cedar-drt/fuzz/Cargo.toml @@ -28,7 +28,7 @@ rand = { version = "0.8", features = ["small_rng"] } clap = { version = "4.0", features = ["derive"], optional = true } rand_chacha = { version = "0.3", optional = true } similar-asserts = "1.5.0" -thiserror = "1.0.61" +thiserror = "2.0" logos = "0.14.0" itertools = "0.13.0" @@ -76,7 +76,7 @@ doc = false [[bin]] name = "partial-auth" path = "fuzz_targets/partial-auth.rs" -test = false +test = false doc = false [[bin]] diff --git a/cedar-policy-generators/Cargo.toml b/cedar-policy-generators/Cargo.toml index 8042ba342..8e8d8f1c6 100644 --- a/cedar-policy-generators/Cargo.toml +++ b/cedar-policy-generators/Cargo.toml @@ -17,4 +17,4 @@ rand = "0.8.5" anyhow = "1.0.72" nanoid = "0.4.0" serde_with = "3.4.0" -thiserror = "1.0" +thiserror = "2.0"