diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-09-23 18:16:18 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-09-23 18:16:18 +0200 |
| commit | b6ba494e9f12286d02f4d9642a9924c18c45d04b (patch) | |
| tree | 2c070393eea26ad10a67c71eec7b40509900f4a8 | |
| parent | 42a568fef71ac180f93bcc8e9452b91cb1010d15 (diff) | |
| download | mullvadvpn-b6ba494e9f12286d02f4d9642a9924c18c45d04b.tar.xz mullvadvpn-b6ba494e9f12286d02f4d9642a9924c18c45d04b.zip | |
Upgrade x25519-dalek
| -rw-r--r-- | Cargo.lock | 6 | ||||
| -rw-r--r-- | talpid-types/Cargo.toml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index d2b7e495c3..6751e21522 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2388,7 +2388,7 @@ dependencies = [ "ipnetwork 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "x25519-dalek 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", + "x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2990,7 +2990,7 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "0.4.5" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3302,4 +3302,4 @@ dependencies = [ "checksum winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" "checksum winres 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ff4fb510bbfe5b8992ff15f77a2e6fe6cf062878f0eda00c0f44963a807ca5dc" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -"checksum x25519-dalek 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "58e75de7a035f694df91838afa87faa8278bc484fa8d7dc34b5a24535cc2bb41" +"checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" diff --git a/talpid-types/Cargo.toml b/talpid-types/Cargo.toml index b293c7263e..a6146c3771 100644 --- a/talpid-types/Cargo.toml +++ b/talpid-types/Cargo.toml @@ -10,6 +10,6 @@ edition = "2018" serde = { version = "1.0", features = ["derive"] } ipnetwork = "0.15" base64 = "0.10" -x25519-dalek = { version = "0.4.5", features = [ "std", "u64_backend" ], default-features = false } +x25519-dalek = { version = "0.5", features = [ "std", "u64_backend" ], default-features = false } rand = "0.7" err-derive = "0.1.5" |
