Commit
+46 -6 +/-2 browse
1 | diff --git a/Cargo.lock b/Cargo.lock |
2 | index f40df55..6898c89 100644 |
3 | --- a/Cargo.lock |
4 | +++ b/Cargo.lock |
5 | @@ -168,6 +168,15 @@ dependencies = [ |
6 | ] |
7 | |
8 | [[package]] |
9 | + name = "block-buffer" |
10 | + version = "0.10.3" |
11 | + source = "registry+https://github.com/rust-lang/crates.io-index" |
12 | + checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" |
13 | + dependencies = [ |
14 | + "generic-array", |
15 | + ] |
16 | + |
17 | + [[package]] |
18 | name = "bumpalo" |
19 | version = "3.11.0" |
20 | source = "registry+https://github.com/rust-lang/crates.io-index" |
21 | @@ -282,6 +291,16 @@ dependencies = [ |
22 | ] |
23 | |
24 | [[package]] |
25 | + name = "crypto-common" |
26 | + version = "0.1.6" |
27 | + source = "registry+https://github.com/rust-lang/crates.io-index" |
28 | + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" |
29 | + dependencies = [ |
30 | + "generic-array", |
31 | + "typenum", |
32 | + ] |
33 | + |
34 | + [[package]] |
35 | name = "crypto-mac" |
36 | version = "0.10.1" |
37 | source = "registry+https://github.com/rust-lang/crates.io-index" |
38 | @@ -323,6 +342,16 @@ dependencies = [ |
39 | ] |
40 | |
41 | [[package]] |
42 | + name = "digest" |
43 | + version = "0.10.3" |
44 | + source = "registry+https://github.com/rust-lang/crates.io-index" |
45 | + checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" |
46 | + dependencies = [ |
47 | + "block-buffer 0.10.3", |
48 | + "crypto-common", |
49 | + ] |
50 | + |
51 | + [[package]] |
52 | name = "dirs-next" |
53 | version = "2.0.0" |
54 | source = "registry+https://github.com/rust-lang/crates.io-index" |
55 | @@ -589,7 +618,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" |
56 | checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" |
57 | dependencies = [ |
58 | "crypto-mac", |
59 | - "digest", |
60 | + "digest 0.9.0", |
61 | ] |
62 | |
63 | [[package]] |
64 | @@ -1170,7 +1199,7 @@ dependencies = [ |
65 | "rusoto_sts", |
66 | "serde", |
67 | "serde_json", |
68 | - "sha2", |
69 | + "sha2 0.10.5", |
70 | "structopt", |
71 | "tempfile", |
72 | "tokio", |
73 | @@ -1256,7 +1285,7 @@ dependencies = [ |
74 | "rusoto_credential", |
75 | "rustc_version 0.2.3", |
76 | "serde", |
77 | - "sha2", |
78 | + "sha2 0.9.9", |
79 | "time", |
80 | "tokio", |
81 | ] |
82 | @@ -1459,14 +1488,25 @@ version = "0.9.9" |
83 | source = "registry+https://github.com/rust-lang/crates.io-index" |
84 | checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" |
85 | dependencies = [ |
86 | - "block-buffer", |
87 | + "block-buffer 0.9.0", |
88 | "cfg-if", |
89 | "cpufeatures", |
90 | - "digest", |
91 | + "digest 0.9.0", |
92 | "opaque-debug", |
93 | ] |
94 | |
95 | [[package]] |
96 | + name = "sha2" |
97 | + version = "0.10.5" |
98 | + source = "registry+https://github.com/rust-lang/crates.io-index" |
99 | + checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5" |
100 | + dependencies = [ |
101 | + "cfg-if", |
102 | + "cpufeatures", |
103 | + "digest 0.10.3", |
104 | + ] |
105 | + |
106 | + [[package]] |
107 | name = "shared_child" |
108 | version = "0.3.5" |
109 | source = "registry+https://github.com/rust-lang/crates.io-index" |
110 | diff --git a/Cargo.toml b/Cargo.toml |
111 | index 121753d..6c3a33f 100644 |
112 | --- a/Cargo.toml |
113 | +++ b/Cargo.toml |
114 | @@ -36,7 +36,7 @@ pretty_env_logger = "0.4" |
115 | rand = { version = "0.8", optional = true } |
116 | serde = { version = "1", features = ["derive"] } |
117 | serde_json = "1" |
118 | - sha2 = "0.9" |
119 | + sha2 = "0.10" |
120 | structopt = "0.3" |
121 | tokio = { version = "1", features = ["full"] } |
122 | tokio-util = { version = "0.6", features = ["full"] } |