diff --git a/Cargo.lock b/Cargo.lock index 207d6cb36..fb77439aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2359,7 +2359,7 @@ dependencies = [ "ironrdp-svc", "opus", "pico-args", - "rand 0.8.5", + "rand 0.9.1", "sspi", "tokio-rustls", "tracing", @@ -2511,7 +2511,7 @@ dependencies = [ "picky", "picky-asn1-der", "picky-asn1-x509", - "rand_core 0.6.4", + "rand_core 0.9.3", "sspi", "tracing", "url", diff --git a/crates/ironrdp-connector/Cargo.toml b/crates/ironrdp-connector/Cargo.toml index b74ee82b3..b5a0f4276 100644 --- a/crates/ironrdp-connector/Cargo.toml +++ b/crates/ironrdp-connector/Cargo.toml @@ -26,7 +26,7 @@ ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5", features = ["std"] } # arbitrary = { version = "1", features = ["derive"], optional = true } # public sspi = "0.16" # public url = "2.5" # public -rand_core = { version = "0.6", features = ["std"] } # TODO: dependency injection? +rand_core = { version = "0.9", features = ["std"] } # TODO: dependency injection? tracing = { version = "0.1", features = ["log"] } picky-asn1-der = "0.5" picky-asn1-x509 = "0.14" diff --git a/crates/ironrdp/Cargo.toml b/crates/ironrdp/Cargo.toml index cdfcb1178..e44d44e64 100644 --- a/crates/ironrdp/Cargo.toml +++ b/crates/ironrdp/Cargo.toml @@ -63,7 +63,7 @@ sspi = { version = "0.16", features = ["network_client"] } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } tokio-rustls = "0.26" -rand = "0.8" +rand = "0.9" opus = "0.3" [package.metadata.docs.rs]