Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
597 changes: 211 additions & 386 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/devolutions-pedm-shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ publish = false
anyhow = { version = "1.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
win-api-wrappers = { path = "../win-api-wrappers", optional = true }
hyper = { version = "~0.14", features = ["client", "http1"], optional = true } # old version required for OpenAPI generator
hyper = { version = "~1.9", features = ["client", "http1"], optional = true } # old version required for OpenAPI generator
serde_json = { version = "1.0", optional = true }
tokio = { version = "1.52", features = ["net", "sync"], optional = true }
glob = { version = "0.3", optional = true }
regex = { version = "1.11", optional = true }
schemars = { version = "0.8", features = ["uuid1"], optional = true }
windows-registry = { version = "0.5", optional = true }
devolutions-pedm-client-http = { path = "./devolutions-pedm-client-http", optional = true }
tower = { version = "0.3", optional = true } # old version required for OpenAPI generator
tower = { version = "0.5", optional = true } # old version required for OpenAPI generator
pin-project = { version = "1.1", optional = true }
uuid = { version = "1", features = ["v4", "serde"]}
dunce = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/devolutions-pedm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ base16ct = { version = "0.2", features = ["std", "alloc"] }
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
digest = "0.10"
hyper = { version = "1.6", features = ["server"] }
hyper = { version = "1.9", features = ["server"] }
hyper-util = { version = "0.1", features = ["tokio"] }
schemars = { version = "0.8", features = ["chrono"] }
serde = "1.0"
Expand All @@ -33,7 +33,7 @@ camino = { version = "1", features = ["serde1"] }
async-trait = "0.1"
tracing = "0.1"
aide = { version = "0.14", features = ["axum", "axum-extra", "axum-json", "axum-tokio"] }
tower-http = { version = "0.5", features = ["timeout"] }
tower-http = { version = "0.6", features = ["timeout"] }
parking_lot = "0.12"
cfg-if = "1.0"
uuid = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workspace = true
[dependencies]
transport = { path = "../transport" }
tokio = { version = "1.52", features = ["io-util"] }
tokio-tungstenite = "0.26"
tokio-tungstenite = "0.29"
futures-util = "0.3"
proptest = "1.7"
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/video-streamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ tokio = { version = "1.52", features = [
] }
axum = { version = "0.8", features = ["ws"] }
futures = "0.3"
tokio-tungstenite = "0.26"
tokio-tungstenite = "0.29"
transport = { path = "../transport" }

[lints]
Expand Down
10 changes: 5 additions & 5 deletions devolutions-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ tower = { version = "0.5", features = ["timeout"] }
ngrok = "0.13"

# HTTP
hyper = "1.6"
hyper = "1.9"
hyper-util = { version = "0.1", features = ["tokio", "server", "server-auto"] }
axum = { version = "0.8", default-features = false, features = ["http1", "json", "ws", "query", "tracing", "tower-log"] }
axum-extra = { version = "0.10", features = ["query", "async-read-body", "typed-header"] }
tower-http = { version = "0.5", features = ["cors", "fs"] }
axum-extra = { version = "0.12", features = ["query", "async-read-body", "typed-header"] }
tower-http = { version = "0.6", features = ["cors", "fs"] }
tungstenite = "0.26" # Should be the same version as `axum` (we perform error downcasting for better error reporting)
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-native-roots"] } # Should use the same version of tungstenite as `axum`
tokio-tungstenite = { version = "0.29", features = ["rustls-tls-native-roots"] } # Should use the same version of tungstenite as `axum`
http-body-util = "0.1"

# OpenAPI generator
Expand Down Expand Up @@ -132,7 +132,7 @@ sysevent-syslog.path = "../crates/sysevent-syslog"
libc = "0.2"

[target.'cfg(windows)'.dependencies]
rustls-cng = { version = "0.5", default-features = false, features = ["logging", "tls12", "ring"] }
rustls-cng = { version = "0.7", default-features = false, features = ["logging", "tls12", "ring"] }
sysevent-winevent.path = "../crates/sysevent-winevent"
windows-sys = { version = "0.61", features = ["Win32_Storage_FileSystem", "Win32_Foundation"] }

Expand Down
4 changes: 2 additions & 2 deletions jetsocat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ humantime = "2.2"

# async
tokio = { version = "1.52", features = ["io-std", "io-util", "net", "fs", "signal", "time", "rt", "sync", "process", "rt-multi-thread", "macros"] }
tokio-tungstenite = "0.26"
tokio-tungstenite = "0.29"
futures-util = "0.3"
transport = { path = "../crates/transport" }

Expand All @@ -63,7 +63,7 @@ tinyjson = "2.5" # Small JSON library; used to avoid including a bigger one like
native-tls = { version = "0.2", optional = true } # Same dependency as tokio-tungstenite
rustls = { version = "0.23", optional = true, default-features = false, features = ["tls12", "std", "ring", "logging"] } # Same dependency as tokio-tungstenite
rustls-native-certs = { version = "0.8", optional = true } # Same dependency as tokio-tungstenite
openssl-probe = "0.1" # Same dependency as rustls-native-certs
openssl-probe = "0.2" # Same dependency as rustls-native-certs
rustls-pemfile = "2.2" # Same dependency as rustls-native-certs
base64 = "0.22" # Same dependency as rustls-pemfile

Expand Down
2 changes: 1 addition & 1 deletion testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tempfile = "3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "net", "process"] }
tokio-util = "0.7"
typed-builder = "0.21"
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-native-roots"] }
tokio-tungstenite = { version = "0.29", features = ["rustls-tls-native-roots"] }

[dev-dependencies]
base64 = "0.22"
Expand Down
Loading