diff --git a/Cargo.lock b/Cargo.lock index 75a454d..7b83773 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -331,7 +331,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2db60a59716a84d09040d29c9e75e81545842510fccb0934c09b28e78b46680" dependencies = [ - "ironrdp-error", + "ironrdp-error 0.1.3", ] [[package]] @@ -340,6 +340,12 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a9d7794e854eef2f13fdf79c8502bcc567a75a15fd0522885f37739386a4cef" +[[package]] +name = "ironrdp-error" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd344ce9518ab83f6f7568ca4f1bc6dc8c55bd2da04cb5ee7b3e8740d5041734" + [[package]] name = "itoa" version = "1.0.18" @@ -405,7 +411,7 @@ version = "0.4.3" dependencies = [ "bitflags", "ironrdp-core", - "ironrdp-error", + "ironrdp-error 0.2.0", "uuid", ] diff --git a/protocols/rust/now-proto-pdu/Cargo.toml b/protocols/rust/now-proto-pdu/Cargo.toml index 7458624..7f1e9f6 100644 --- a/protocols/rust/now-proto-pdu/Cargo.toml +++ b/protocols/rust/now-proto-pdu/Cargo.toml @@ -22,7 +22,7 @@ workspace = true [dependencies] bitflags = "2" ironrdp-core = { version = "0.1", features = ["alloc"] } -ironrdp-error = { version = "0.1", features = ["alloc"] } +ironrdp-error = { version = "0.2", features = ["alloc"] } uuid = { version = "1", default-features = false } [features]