summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2021-02-04 13:33:52 +0100
committerLinus Färnstrand <linus@mullvad.net>2021-02-05 10:57:28 +0100
commite7e1491818be60b949f484c8b76018e53921c726 (patch)
treea60decba723499b81e2c8287453166178256b69c
parentae816738ccb7444a2b4218ede58d42f45cd95c04 (diff)
downloadmullvadvpn-e7e1491818be60b949f484c8b76018e53921c726.tar.xz
mullvadvpn-e7e1491818be60b949f484c8b76018e53921c726.zip
Upgrade base64 dependency to 0.13
-rw-r--r--Cargo.lock14
-rw-r--r--mullvad-cli/Cargo.toml2
-rw-r--r--talpid-types/Cargo.toml2
3 files changed, 12 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2252929cb2..6cf99c7e92 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -133,6 +133,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
+name = "base64"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
+
+[[package]]
name = "bitflags"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1224,7 +1230,7 @@ dependencies = [
name = "mullvad-cli"
version = "2021.1.0-beta2"
dependencies = [
- "base64",
+ "base64 0.13.0",
"chrono",
"clap",
"env_logger",
@@ -2218,7 +2224,7 @@ version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81"
dependencies = [
- "base64",
+ "base64 0.12.3",
"log 0.4.14",
"ring",
"sct",
@@ -2651,7 +2657,7 @@ dependencies = [
name = "talpid-types"
version = "0.1.0"
dependencies = [
- "base64",
+ "base64 0.13.0",
"err-derive 0.3.0",
"ipnetwork",
"jnix",
@@ -2833,7 +2839,7 @@ checksum = "74a5d6e7439ecf910463667080de772a9c7ddf26bc9fb4f3252ac3862e43337d"
dependencies = [
"async-stream",
"async-trait",
- "base64",
+ "base64 0.12.3",
"bytes 0.5.6",
"futures-core",
"futures-util",
diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml
index eb6bc3c730..a9ddb0df14 100644
--- a/mullvad-cli/Cargo.toml
+++ b/mullvad-cli/Cargo.toml
@@ -12,7 +12,7 @@ name = "mullvad"
path = "src/main.rs"
[dependencies]
-base64 = "0.12"
+base64 = "0.13"
chrono = { version = "0.4", features = ["serde"] }
clap = "2.32"
err-derive = "0.3.0"
diff --git a/talpid-types/Cargo.toml b/talpid-types/Cargo.toml
index 21d8968410..6bbf3059a9 100644
--- a/talpid-types/Cargo.toml
+++ b/talpid-types/Cargo.toml
@@ -10,7 +10,7 @@ publish = false
[dependencies]
serde = { version = "1.0", features = ["derive"] }
ipnetwork = "0.16"
-base64 = "0.12"
+base64 = "0.13"
x25519-dalek = { version = "1.1", features = [ "std", "u64_backend" ], default-features = false }
rand = "0.7"
err-derive = "0.3.0"