Author: Daniel Noland [daniel@stateless.net]
Committer: Jason White [github@jasonwhite.io] Tue, 13 Sep 2022 04:29:15 +0000
Hash: eb35dddde7f0a1a3a4e15beffb47269c3c1f3506
Timestamp: Tue, 13 Sep 2022 04:29:15 +0000 (2 years ago)

+6 -46 +/-2 browse
bump uuid to 1.1
1diff --git a/Cargo.lock b/Cargo.lock
2index 6898c89..f40df55 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5 @@ -168,15 +168,6 @@ 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 @@ -291,16 +282,6 @@ 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 @@ -342,16 +323,6 @@ 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 @@ -618,7 +589,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
56 checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
57 dependencies = [
58 "crypto-mac",
59- "digest 0.9.0",
60+ "digest",
61 ]
62
63 [[package]]
64 @@ -1199,7 +1170,7 @@ dependencies = [
65 "rusoto_sts",
66 "serde",
67 "serde_json",
68- "sha2 0.10.5",
69+ "sha2",
70 "structopt",
71 "tempfile",
72 "tokio",
73 @@ -1285,7 +1256,7 @@ dependencies = [
74 "rusoto_credential",
75 "rustc_version 0.2.3",
76 "serde",
77- "sha2 0.9.9",
78+ "sha2",
79 "time",
80 "tokio",
81 ]
82 @@ -1488,25 +1459,14 @@ version = "0.9.9"
83 source = "registry+https://github.com/rust-lang/crates.io-index"
84 checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
85 dependencies = [
86- "block-buffer 0.9.0",
87+ "block-buffer",
88 "cfg-if",
89 "cpufeatures",
90- "digest 0.9.0",
91+ "digest",
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
111index 6c3a33f..23e31d8 100644
112--- a/Cargo.toml
113+++ b/Cargo.toml
114 @@ -41,7 +41,7 @@ structopt = "0.3"
115 tokio = { version = "1", features = ["full"] }
116 tokio-util = { version = "0.6", features = ["full"] }
117 url = "2"
118- uuid = { version = "0.8", features = ["v4"] }
119+ uuid = { version = "1.1", features = ["v4"] }
120
121 [dev-dependencies]
122 rand = "0.8"