diff options
author | Stuart Stock <stuart@int08h.com> | 2019-12-21 16:51:50 -0600 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2019-12-21 16:51:50 -0600 |
commit | ae063d9aa9aae570faabcc4d73f709e368c346b3 (patch) | |
tree | 2762c747cb3080a5698f836d85a4c2f4d17ce5b0 | |
parent | 827f978a00b4267d4faf939c52e2e61ab95ddc66 (diff) | |
download | roughenough-ae063d9aa9aae570faabcc4d73f709e368c346b3.zip |
Reorder Cargo.toml dependencies
-rw-r--r-- | Cargo.toml | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -18,23 +18,23 @@ awskms = ["rusoto_core", "rusoto_kms"] gcpkms = ["google-cloudkms1", "hyper", "hyper-rustls", "serde", "serde_json", "yup-oauth2"] [dependencies] -mio = "0.6" -mio-extras = "2.0" -bytes = "0.4" +base64 = "0.9" byteorder = "1" -ring = "0.13" -untrusted = "0.6" -time = "0.1" -log = "0.4" -simple_logger = "0.5" -yaml-rust = "0.3" -ctrlc = { version = "3.1", features = ["termination"] } -clap = "2" +bytes = "0.4" chrono = "0.4" +clap = "2" +ctrlc = { version = "3.1", features = ["termination"] } hex = "0.3" -base64 = "0.9" 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" +untrusted = "0.6" +yaml-rust = "0.3" # Used by 'awskms' rusoto_core = { version = "0.40", optional = true } |