aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock22
-rw-r--r--Cargo.toml6
2 files changed, 20 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 4d507a5..ff6b1a4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -120,6 +120,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
[[package]]
+name = "base64"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "53d1ccbaf7d9ec9537465a97bf19edc1a4e158ecb49fc16178202238c569cc42"
+
+[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -386,7 +392,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
- "humantime",
+ "humantime 1.3.0",
"log",
"regex",
"termcolor",
@@ -602,6 +608,12 @@ dependencies = [
]
[[package]]
+name = "humantime"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b9b6c53306532d3c8e8087b44e6580e10db51a023cf9b433cea2ac38066b92da"
+
+[[package]]
name = "hyper"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1098,14 +1110,14 @@ dependencies = [
"aes",
"anyhow",
"arrayvec",
- "base64",
+ "base64 0.12.1",
"block-modes",
"chbs",
"clap",
"daemonize",
"directories",
"env_logger",
- "humantime",
+ "humantime 2.0.0",
"log",
"nix",
"openssl",
@@ -1187,7 +1199,7 @@ version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02b81e49ddec5109a9dcfc5f2a317ff53377c915e9ae9d4f2fb50914b85614e2"
dependencies = [
- "base64",
+ "base64 0.11.0",
"bytes",
"encoding_rs",
"futures-core",
@@ -1238,7 +1250,7 @@ version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bc8af4bda8e1ff4932523b94d3dd20ee30a87232323eda55903ffd71d2fb017"
dependencies = [
- "base64",
+ "base64 0.11.0",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
diff --git a/Cargo.toml b/Cargo.toml
index b6572f1..c84f215 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,19 +15,19 @@ license = "MIT"
aes = "0.3"
anyhow = "1.0"
arrayvec = "0.5"
-base64 = "0.11"
+base64 = "0.12"
block-modes = "0.3"
chbs = "0.0.10"
clap = { version = "2.33", features = ["wrap_help"] }
daemonize = "0.4"
directories = "2.0"
env_logger = "0.7"
-humantime = "1.3"
+humantime = "2.0"
log = "0.4"
nix = "0.17"
openssl = "0.10"
paw = "1.0"
-percent-encoding = "2.0"
+percent-encoding = "2.1"
rand = "0.7"
region = "2.1"
reqwest = { version = "0.10", features = ["blocking", "json"] }