From 2430491ccbfaf1cba482cf51eed5809bd6e47c88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Apr 2025 13:48:43 +0000 Subject: [PATCH] build(deps): bump thiserror from 1.0.69 to 2.0.12 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.69 to 2.0.12. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.69...2.0.12) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.12 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ crates/ironrdp-cliprdr-format/Cargo.toml | 2 +- crates/ironrdp-cliprdr-native/Cargo.toml | 2 +- crates/ironrdp-cliprdr/Cargo.toml | 2 +- crates/ironrdp-graphics/Cargo.toml | 2 +- crates/ironrdp-pdu/Cargo.toml | 2 +- ffi/Cargo.toml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 86ed110d5..5d8d61104 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1515,7 +1515,7 @@ dependencies = [ "ironrdp-cliprdr-native", "ironrdp-core", "sspi", - "thiserror 1.0.69", + "thiserror 2.0.12", "tracing", "tracing-subscriber", ] @@ -2471,7 +2471,7 @@ dependencies = [ "ironrdp-core", "ironrdp-pdu", "ironrdp-svc", - "thiserror 1.0.69", + "thiserror 2.0.12", "tracing", ] @@ -2481,7 +2481,7 @@ version = "0.1.3" dependencies = [ "ironrdp-core", "png", - "thiserror 1.0.69", + "thiserror 2.0.12", ] [[package]] @@ -2490,7 +2490,7 @@ version = "0.2.0" dependencies = [ "ironrdp-cliprdr", "ironrdp-core", - "thiserror 1.0.69", + "thiserror 2.0.12", "tracing", "windows 0.61.1", ] @@ -2587,7 +2587,7 @@ dependencies = [ "lazy_static", "num-derive", "num-traits", - "thiserror 1.0.69", + "thiserror 2.0.12", "yuv", ] @@ -2620,7 +2620,7 @@ dependencies = [ "pkcs1", "sha1", "tap", - "thiserror 1.0.69", + "thiserror 2.0.12", "x509-cert", ] diff --git a/crates/ironrdp-cliprdr-format/Cargo.toml b/crates/ironrdp-cliprdr-format/Cargo.toml index 63daf2193..a90624671 100644 --- a/crates/ironrdp-cliprdr-format/Cargo.toml +++ b/crates/ironrdp-cliprdr-format/Cargo.toml @@ -17,7 +17,7 @@ test = false [dependencies] ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public -thiserror = "1" # FIXME: handwrite the Error trait implementations. +thiserror = "2" # FIXME: handwrite the Error trait implementations. png = "0.17" [lints] diff --git a/crates/ironrdp-cliprdr-native/Cargo.toml b/crates/ironrdp-cliprdr-native/Cargo.toml index 7d0ec69f0..9ef8e0bda 100644 --- a/crates/ironrdp-cliprdr-native/Cargo.toml +++ b/crates/ironrdp-cliprdr-native/Cargo.toml @@ -21,7 +21,7 @@ ironrdp-core = { path = "../ironrdp-core", version = "0.1" } tracing = { version = "0.1", features = ["log"] } [target.'cfg(windows)'.dependencies] -thiserror = "1" +thiserror = "2" windows = { version = "0.61", features = [ "Win32_Foundation", "Win32_Graphics_Gdi", diff --git a/crates/ironrdp-cliprdr/Cargo.toml b/crates/ironrdp-cliprdr/Cargo.toml index 69eaac36b..5f7fad181 100644 --- a/crates/ironrdp-cliprdr/Cargo.toml +++ b/crates/ironrdp-cliprdr/Cargo.toml @@ -19,7 +19,7 @@ test = false ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public ironrdp-svc = { path = "../ironrdp-svc", version = "0.3" } # public -thiserror = "1.0" # FIXME: handwrite the Error trait implementations. +thiserror = "2.0" # FIXME: handwrite the Error trait implementations. tracing = { version = "0.1", features = ["log"] } bitflags = "2.4" diff --git a/crates/ironrdp-graphics/Cargo.toml b/crates/ironrdp-graphics/Cargo.toml index 25700f6a5..0de5f9150 100644 --- a/crates/ironrdp-graphics/Cargo.toml +++ b/crates/ironrdp-graphics/Cargo.toml @@ -25,7 +25,7 @@ byteorder = "1.5" # TODO: remove lazy_static.workspace = true # Legacy crate; prefer std::sync::LazyLock or LazyCell num-derive.workspace = true # TODO: remove num-traits.workspace = true # TODO: remove -thiserror = "1" # FIXME: handwrite the Error trait implementations. +thiserror = "2" # FIXME: handwrite the Error trait implementations. yuv = { version = "0.8", features = ["rdp"] } [dev-dependencies] diff --git a/crates/ironrdp-pdu/Cargo.toml b/crates/ironrdp-pdu/Cargo.toml index d2dbe0cc7..1ca9414b8 100644 --- a/crates/ironrdp-pdu/Cargo.toml +++ b/crates/ironrdp-pdu/Cargo.toml @@ -30,7 +30,7 @@ tap = "1" bit_field = "0.10" byteorder = "1.5" # TODO: remove der-parser = "9.0" -thiserror = "1.0" +thiserror = "2.0" md5 = { package = "md-5", version = "0.10" } num-bigint = "0.4" num-derive.workspace = true # TODO: remove diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index fbefb2e76..5ae877220 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -18,7 +18,7 @@ ironrdp = { path = "../crates/ironrdp", features = ["session", "connector", "dvc ironrdp-cliprdr-native.path = "../crates/ironrdp-cliprdr-native" ironrdp-core = { path = "../crates/ironrdp-core", features = ["alloc"] } sspi = { version = "0.15", features = ["network_client"] } -thiserror = "1" +thiserror = "2" tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }