diff options
author | Stuart Stock <stuart@int08h.com> | 2020-03-21 13:28:05 -0500 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2020-03-21 13:28:05 -0500 |
commit | d42db50e5efcb33dba7388d31011703a93d085cc (patch) | |
tree | b76a31090924caa5d8a0dc0f08d50a2a7cbb92fe | |
parent | e13d6fdfd1317a69b7b10a69f8206634bb69dda9 (diff) | |
download | roughenough-d42db50e5efcb33dba7388d31011703a93d085cc.zip |
Upgrade several dependencies to latest versions
-rw-r--r-- | Cargo.toml | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -18,27 +18,26 @@ awskms = ["rusoto_core", "rusoto_kms"] gcpkms = ["google-cloudkms1", "hyper", "hyper-rustls", "serde", "serde_json", "yup-oauth2"] [dependencies] -base64 = "0.9" +base64 = "0.12" byteorder = "1" -bytes = "0.4" +bytes = "0.5" chrono = "0.4" clap = "2" ctrlc = { version = "3.1", features = ["termination"] } -hex = "0.3" +hex = "0.4" humansize = "1.0" log = "0.4" mio = "0.6" mio-extras = "2.0" rand = "0.6" ring = "0.13" -simple_logger = "0.5" -time = "0.1" +simple_logger = "1" untrusted = "0.6" -yaml-rust = "0.3" +yaml-rust = "0.4" # Used by 'awskms' -rusoto_core = { version = "0.42", optional = true } -rusoto_kms = { version = "0.42", optional = true } +rusoto_core = { version = "0.43", optional = true } +rusoto_kms = { version = "0.43", optional = true } # Used by 'gcpkms' # google-cloudkms1 intentionally uses an old version of Hyper. See @@ -52,7 +51,7 @@ serde_json = { version = "^1.0", optional = true } yup-oauth2 = { version = "^1.0", optional = true } [dev-dependencies] -criterion = "0.2" +criterion = "0.3" [[bench]] name = "roughenough-bench" |