diff --git a/crates/http-client-proxy/Cargo.toml b/crates/http-client-proxy/Cargo.toml index e45a6d65b..cb2509256 100644 --- a/crates/http-client-proxy/Cargo.toml +++ b/crates/http-client-proxy/Cargo.toml @@ -12,7 +12,7 @@ workspace = true proxy_cfg = "0.4" reqwest = { version = "0.12", default-features = false } anyhow = "1.0" -url = "2.5" +url = { version = "2.5", features = ["serde"] } tracing = "0.1" ipnet = "2.10" parking_lot = "0.12" diff --git a/devolutions-agent/Cargo.toml b/devolutions-agent/Cargo.toml index b5bde9ae7..4a9a34b2f 100644 --- a/devolutions-agent/Cargo.toml +++ b/devolutions-agent/Cargo.toml @@ -31,7 +31,7 @@ serde = { version = "1", features = ["derive"] } tap = "1.0" tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "tls12", "ring"] } tracing = "0.1" -url = "2.5" +url = { version = "2.5", features = ["serde"] } [dependencies.ironrdp] version = "0.14" diff --git a/testsuite/tests/cli/jetsocat.rs b/testsuite/tests/cli/jetsocat.rs index c046bea6e..57996b9d3 100644 --- a/testsuite/tests/cli/jetsocat.rs +++ b/testsuite/tests/cli/jetsocat.rs @@ -268,7 +268,8 @@ fn jmux_proxy_write_hello_world() { format!("forward tcp://127.0.0.1:{proxy_listen_port} 'cmd://echo hello world'"), ) .timeout(COMMAND_TIMEOUT) - .assert(); + .assert() + .success(); // Kill all processes. let _ = jmux_client.kill();