chore(deps): use local version of sspi-rs;

This commit is contained in:
Pavlo Myroniuk 2025-06-23 19:15:38 +03:00
parent 4dc5945019
commit 725c31ec2f
5 changed files with 13 additions and 15 deletions

18
Cargo.lock generated
View file

@ -645,9 +645,9 @@ dependencies = [
[[package]]
name = "cc"
version = "1.2.27"
version = "1.2.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
dependencies = [
"jobserver",
"libc",
@ -4475,9 +4475,9 @@ dependencies = [
[[package]]
name = "rgb"
version = "0.8.50"
version = "0.8.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
checksum = "a457e416a0f90d246a4c3288bd7a25b2304ca727f253f95be383dd17af56be8f"
dependencies = [
"bytemuck",
]
@ -5052,8 +5052,6 @@ dependencies = [
[[package]]
name = "sspi"
version = "0.15.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "214ee905dcdd4b7ab11404b616e58dc6944d80fe8592fbdc13abc87d7e2bff0a"
dependencies = [
"async-dnssd",
"async-recursion",
@ -5391,9 +5389,9 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.46.0"
version = "1.46.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1140bb80481756a8cbe10541f37433b459c5aa1e727b4c020fbfebdc25bf3ec4"
checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
dependencies = [
"backtrace",
"bytes",
@ -6815,9 +6813,9 @@ dependencies = [
[[package]]
name = "yuv"
version = "0.8.5"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edbbcfeb785840e02cad75cd8bc9e53854a5cb7853b6e2a9266d478ccc741709"
checksum = "8b08262a503468e0123115a872ac2fd250f965e0178489d393686e9dd19b47e6"
dependencies = [
"num-traits",
]

View file

@ -24,7 +24,7 @@ ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public
ironrdp-error = { path = "../ironrdp-error", version = "0.1" } # public
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5", features = ["std"] } # public
arbitrary = { version = "1", features = ["derive"], optional = true } # public
sspi = "0.15" # public
sspi = { path = "../../../sspi-rs" } # public
url = "2.5" # public
rand_core = { version = "0.6", features = ["std"] } # TODO: dependency injection?
tracing = { version = "0.1", features = ["log"] }

View file

@ -23,11 +23,11 @@ reqwest-native-tls = ["reqwest", "reqwest?/native-tls"]
[dependencies]
bytes = "1"
ironrdp-async = { path = "../ironrdp-async", version = "0.5" } # public
ironrdp-async = { path = "../ironrdp-async", version = "0.5", default-features = false } # public
ironrdp-connector = { path = "../ironrdp-connector", version = "0.5", optional = true }
tokio = { version = "1", features = ["io-util"] }
reqwest = { version = "0.12", default-features = false, features = ["http2", "system-proxy"], optional = true }
sspi = { version = "0.15", features = ["network_client", "dns_resolver"], optional = true }
sspi = { path = "../../../sspi-rs", features = ["network_client", "dns_resolver"], optional = true }
url = { version = "2.5", optional = true }
[lints]

View file

@ -59,7 +59,7 @@ async-trait = "0.1"
image = { version = "0.25.6", default-features = false, features = ["png"] }
pico-args = "0.5"
x509-cert = { version = "0.2", default-features = false, features = ["std"] }
sspi = { version = "0.15", features = ["network_client"] }
sspi = { path = "../../../sspi-rs", features = ["network_client"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-rustls = "0.26"

View file

@ -17,7 +17,7 @@ diplomat-runtime = "0.7"
ironrdp = { path = "../crates/ironrdp", features = ["session", "connector", "dvc", "svc", "rdpdr", "rdpsnd", "graphics", "input", "cliprdr", "displaycontrol"] }
ironrdp-cliprdr-native.path = "../crates/ironrdp-cliprdr-native"
ironrdp-core = { path = "../crates/ironrdp-core", features = ["alloc"] }
sspi = { version = "0.15", features = ["network_client"] }
sspi = { path = "../../sspi-rs", features = ["network_client"] }
thiserror = "1"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }