summaryrefslogtreecommitdiffhomepage
path: root/mullvad-api
diff options
context:
space:
mode:
authorEmīls <emils@mullvad.net>2023-04-19 14:37:03 +0200
committerEmīls <emils@mullvad.net>2023-04-20 12:39:48 +0200
commita689e646333bc3205301c381fb2f4d1c8e4e8259 (patch)
tree4deb0b36a68e43137401c470f0038886dbffc272 /mullvad-api
parentc64f89ba382740b20c532564bad7c62e95346bce (diff)
downloadmullvadvpn-a689e646333bc3205301c381fb2f4d1c8e4e8259.tar.xz
mullvadvpn-a689e646333bc3205301c381fb2f4d1c8e4e8259.zip
Update shadowsocks to 1.15.3
Diffstat (limited to 'mullvad-api')
-rw-r--r--mullvad-api/Cargo.toml2
-rw-r--r--mullvad-api/src/https_client_with_sni.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/mullvad-api/Cargo.toml b/mullvad-api/Cargo.toml
index c61b686823..e31d54c5e3 100644
--- a/mullvad-api/Cargo.toml
+++ b/mullvad-api/Cargo.toml
@@ -32,4 +32,4 @@ mullvad-types = { path = "../mullvad-types" }
talpid-types = { path = "../talpid-types" }
talpid-time = { path = "../talpid-time" }
-shadowsocks = { version = "1.14.2", default-features = false, features = ["stream-cipher"] }
+shadowsocks = { version = "1.15.3", default-features = false, features = ["stream-cipher"] }
diff --git a/mullvad-api/src/https_client_with_sni.rs b/mullvad-api/src/https_client_with_sni.rs
index 7202257686..dbe71203ec 100644
--- a/mullvad-api/src/https_client_with_sni.rs
+++ b/mullvad-api/src/https_client_with_sni.rs
@@ -16,7 +16,7 @@ use hyper::{
use shadowsocks::{
config::ServerType,
context::{Context as SsContext, SharedContext},
- crypto::v1::CipherKind,
+ crypto::CipherKind,
relay::tcprelay::ProxyClientStream,
ServerConfig,
};