Skip to content
Open
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
80 changes: 37 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/agent-tunnel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ quinn = "0.11"
socket2 = "0.5"

[dev-dependencies]
base64 = "0.22"
base64 = "0.23"
tokio = { version = "1.52", features = ["macros"] }
2 changes: 1 addition & 1 deletion crates/devolutions-pedm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish = false
anyhow = "1.0"
axum = { version = "0.8", default-features = false, features = ["http1", "json", "tokio", "query", "tracing", "tower-log", "form", "original-uri", "matched-path"] }
base16ct = { version = "0.2", features = ["std", "alloc"] }
base64 = "0.22"
base64 = "0.23"
chrono = { version = "0.4", features = ["serde"] }
digest = "0.10"
hyper = { version = "1.6", features = ["server"] }
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
2 changes: 1 addition & 1 deletion devolutions-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ anyhow = "1"
backoff = "0.4"
async-trait = "0.1"
axum = { version = "0.8", default-features = false, features = ["http1", "json", "tokio", "original-uri", "matched-path"] }
base64 = "0.22"
base64 = "0.23"
bytes = "1"
camino = { version = "1.1", features = ["serde1"] }
ceviche = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions devolutions-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ axum = { version = "0.8", default-features = false, features = ["http1", "json",
axum-extra = { version = "0.10", features = ["query", "async-read-body", "typed-header"] }
tower-http = { version = "0.5", 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"
tokio-retry = "0.3"

Expand Down Expand Up @@ -142,7 +142,7 @@ windows-sys = { version = "0.61", features = ["Win32_Storage_FileSystem", "Win32
embed-resource = "3.0"

[dev-dependencies]
base64 = "0.22"
base64 = "0.23"
tokio-test = "0.4"
proptest = "1.7"
tempfile = "3"
Expand Down
4 changes: 2 additions & 2 deletions jetsocat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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 @@ -66,7 +66,7 @@ rustls = { version = "0.23", optional = true, default-features = false, features
rustls-native-certs = { version = "0.8", optional = true } # Same dependency as tokio-tungstenite
openssl-probe = "0.1" # Same dependency as rustls-native-certs
rustls-pemfile = "2.2" # Same dependency as rustls-native-certs
base64 = "0.22" # Same dependency as rustls-pemfile
base64 = "0.23" # Same dependency as rustls-pemfile

[target.'cfg(not(any(target_os = "windows", target_vendor = "apple")))'.dependencies]
# doctor
Expand Down
4 changes: 2 additions & 2 deletions testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ 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"
base64 = "0.23"
proxy-socks = { path = "../crates/proxy-socks" }
libsql = { version = "0.9", default-features = false, features = ["core"] }
mcp-proxy.path = "../crates/mcp-proxy"
Expand Down
Loading