diff options
| author | David Lönnhager <david.l@mullvad.net> | 2022-04-12 09:05:00 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2022-04-12 09:05:00 +0200 |
| commit | 72dc936eb6b5a2d4233a0cc81eba729f2bd12fcd (patch) | |
| tree | e77bc6633280bbaa1bd2af8120d535fa2f045437 | |
| parent | adbbf8c48b2e9326bca2508d72da2b13aa2636b8 (diff) | |
| download | mullvadvpn-72dc936eb6b5a2d4233a0cc81eba729f2bd12fcd.tar.xz mullvadvpn-72dc936eb6b5a2d4233a0cc81eba729f2bd12fcd.zip | |
Bump shadowsocks to released versions
| -rw-r--r-- | Cargo.lock | 6 | ||||
| -rw-r--r-- | mullvad-api/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-core/Cargo.toml | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index cfdf50934d..664020ac7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2973,7 +2973,8 @@ dependencies = [ [[package]] name = "shadowsocks" version = "1.14.2" -source = "git+https://github.com/shadowsocks/shadowsocks-rust?rev=7388ddfb7d36d5b84908c476daabc91c8b065a37#7388ddfb7d36d5b84908c476daabc91c8b065a37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f16fc99441d1a1b91b5f7b5093773d631ad506761a973e0a632f1836d1b05939" dependencies = [ "async-trait", "base64", @@ -3020,7 +3021,8 @@ dependencies = [ [[package]] name = "shadowsocks-service" version = "1.14.3" -source = "git+https://github.com/shadowsocks/shadowsocks-rust?rev=7388ddfb7d36d5b84908c476daabc91c8b065a37#7388ddfb7d36d5b84908c476daabc91c8b065a37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08c3eb3ce85fb4c1f7451d2a5704503d3146ed7d626a17a63194092f07be45a4" dependencies = [ "arc-swap", "async-trait", diff --git a/mullvad-api/Cargo.toml b/mullvad-api/Cargo.toml index 074d67c7c1..b402d5b6b1 100644 --- a/mullvad-api/Cargo.toml +++ b/mullvad-api/Cargo.toml @@ -35,7 +35,7 @@ mullvad-types = { path = "../mullvad-types" } talpid-types = { path = "../talpid-types" } talpid-time = { path = "../talpid-time" } -shadowsocks = { git = "https://github.com/shadowsocks/shadowsocks-rust", rev = "7388ddfb7d36d5b84908c476daabc91c8b065a37", default-features = false, features = ["stream-cipher"] } +shadowsocks = { version = "1.14.2", default-features = false, features = ["stream-cipher"] } [target.'cfg(target_os="macos")'.dependencies] tokio-stream = { version = "0.1", features = ["io-util"] } diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml index d9b6ddd5d9..e422a537ca 100644 --- a/talpid-core/Cargo.toml +++ b/talpid-core/Cargo.toml @@ -33,7 +33,7 @@ tokio = { version = "1.8", features = ["process", "rt-multi-thread", "fs"] } tokio-stream = { version = "0.1", features = ["io-util"] } rand = "0.7" tunnel-obfuscation = { path = "../tunnel-obfuscation" } -shadowsocks-service = { git = "https://github.com/shadowsocks/shadowsocks-rust", rev = "7388ddfb7d36d5b84908c476daabc91c8b065a37", default-features = false, features = ["local", "stream-cipher"] } +shadowsocks-service = { version = "1.14.3", default-features = false, features = ["local", "stream-cipher"] } [target.'cfg(not(target_os="android"))'.dependencies] byteorder = "1" |
