diff options
| author | Linus Färnstrand <faern@faern.net> | 2022-06-23 10:48:16 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2022-07-01 10:01:42 +0200 |
| commit | 77f6bab651391a765b7d7c32c3633fbccf931d5b (patch) | |
| tree | 208b181ea5be29e3ed08ebdff73bf1ec09b661c4 | |
| parent | cfdf8d95cdc2017152f6589ff2a439fa3a010d25 (diff) | |
| download | mullvadvpn-77f6bab651391a765b7d7c32c3633fbccf931d5b.tar.xz mullvadvpn-77f6bab651391a765b7d7c32c3633fbccf931d5b.zip | |
Specify version on git dependencies
| -rw-r--r-- | talpid-tunnel-config-client/Cargo.toml | 7 | ||||
| -rw-r--r-- | tunnel-obfuscation/Cargo.toml | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/talpid-tunnel-config-client/Cargo.toml b/talpid-tunnel-config-client/Cargo.toml index 5cb8983c41..18ce417468 100644 --- a/talpid-tunnel-config-client/Cargo.toml +++ b/talpid-tunnel-config-client/Cargo.toml @@ -16,7 +16,12 @@ prost = "0.8" prost-types = "0.9" tower = "0.4" tokio = "1" -classic-mceliece-rust = { git = "https://github.com/mullvad/classic-mceliece-rust", rev = "5130d9e3bfbf54735177e15636a643366c250b78", features = ["mceliece8192128f"] } + +[dependencies.classic-mceliece-rust] +git = "https://github.com/mullvad/classic-mceliece-rust" +rev = "5130d9e3bfbf54735177e15636a643366c250b78" +version = "1.0.1" +features = ["mceliece8192128f"] [dev-dependencies] tokio = { version = "1", features = ["rt-multi-thread"] } diff --git a/tunnel-obfuscation/Cargo.toml b/tunnel-obfuscation/Cargo.toml index a1d8e31618..0cf0b54add 100644 --- a/tunnel-obfuscation/Cargo.toml +++ b/tunnel-obfuscation/Cargo.toml @@ -12,4 +12,8 @@ async-trait = "0.1" err-derive = "0.3.0" futures = "0.3.5" tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "net", "io-util"] } -udp-over-tcp = { git = "https://github.com/mullvad/udp-over-tcp", rev = "3dae584677ed26aff08ab759f7799a55c0ff1aec" } + +[dependencies.udp-over-tcp] +git = "https://github.com/mullvad/udp-over-tcp" +rev = "3dae584677ed26aff08ab759f7799a55c0ff1aec" +version = "0.2" |
