Skip to content

Commit 2430491

Browse files
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](dtolnay/thiserror@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] <[email protected]>
1 parent d8ab533 commit 2430491

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/ironrdp-cliprdr-format/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test = false
1717

1818
[dependencies]
1919
ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public
20-
thiserror = "1" # FIXME: handwrite the Error trait implementations.
20+
thiserror = "2" # FIXME: handwrite the Error trait implementations.
2121
png = "0.17"
2222

2323
[lints]

crates/ironrdp-cliprdr-native/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
2121
tracing = { version = "0.1", features = ["log"] }
2222

2323
[target.'cfg(windows)'.dependencies]
24-
thiserror = "1"
24+
thiserror = "2"
2525
windows = { version = "0.61", features = [
2626
"Win32_Foundation",
2727
"Win32_Graphics_Gdi",

crates/ironrdp-cliprdr/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test = false
1919
ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public
2020
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public
2121
ironrdp-svc = { path = "../ironrdp-svc", version = "0.3" } # public
22-
thiserror = "1.0" # FIXME: handwrite the Error trait implementations.
22+
thiserror = "2.0" # FIXME: handwrite the Error trait implementations.
2323
tracing = { version = "0.1", features = ["log"] }
2424
bitflags = "2.4"
2525

crates/ironrdp-graphics/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ byteorder = "1.5" # TODO: remove
2525
lazy_static.workspace = true # Legacy crate; prefer std::sync::LazyLock or LazyCell
2626
num-derive.workspace = true # TODO: remove
2727
num-traits.workspace = true # TODO: remove
28-
thiserror = "1" # FIXME: handwrite the Error trait implementations.
28+
thiserror = "2" # FIXME: handwrite the Error trait implementations.
2929
yuv = { version = "0.8", features = ["rdp"] }
3030

3131
[dev-dependencies]

crates/ironrdp-pdu/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tap = "1"
3030
bit_field = "0.10"
3131
byteorder = "1.5" # TODO: remove
3232
der-parser = "9.0"
33-
thiserror = "1.0"
33+
thiserror = "2.0"
3434
md5 = { package = "md-5", version = "0.10" }
3535
num-bigint = "0.4"
3636
num-derive.workspace = true # TODO: remove

ffi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ironrdp = { path = "../crates/ironrdp", features = ["session", "connector", "dvc
1818
ironrdp-cliprdr-native.path = "../crates/ironrdp-cliprdr-native"
1919
ironrdp-core = { path = "../crates/ironrdp-core", features = ["alloc"] }
2020
sspi = { version = "0.15", features = ["network_client"] }
21-
thiserror = "1"
21+
thiserror = "2"
2222
tracing = { version = "0.1", features = ["log"] }
2323
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2424

0 commit comments

Comments
 (0)