diff options
-rw-r--r-- | Cargo.lock | 1801 | ||||
-rw-r--r-- | flake.lock | 66 | ||||
-rw-r--r-- | flake.nix | 14 | ||||
-rw-r--r-- | gitolfs3-authenticate/Cargo.toml | 2 | ||||
-rw-r--r-- | gitolfs3-authenticate/src/main.rs | 4 | ||||
-rw-r--r-- | gitolfs3-common/Cargo.toml | 4 | ||||
-rw-r--r-- | gitolfs3-common/src/lib.rs | 16 | ||||
-rw-r--r-- | gitolfs3-server/Cargo.toml | 14 | ||||
-rw-r--r-- | gitolfs3-server/src/api.rs | 14 | ||||
-rw-r--r-- | gitolfs3-server/src/authz.rs | 4 | ||||
-rw-r--r-- | gitolfs3-server/src/config.rs | 20 | ||||
-rw-r--r-- | gitolfs3-server/src/handler.rs | 77 | ||||
-rw-r--r-- | gitolfs3-server/src/main.rs | 6 | ||||
-rw-r--r-- | gitolfs3-shell/Cargo.toml | 2 |
14 files changed, 1358 insertions, 686 deletions
@@ -1,33 +1,21 @@ | |||
1 | # This file is automatically @generated by Cargo. | 1 | # This file is automatically @generated by Cargo. |
2 | # It is not intended for manual editing. | 2 | # It is not intended for manual editing. |
3 | version = 3 | 3 | version = 4 |
4 | 4 | ||
5 | [[package]] | 5 | [[package]] |
6 | name = "addr2line" | 6 | name = "addr2line" |
7 | version = "0.21.0" | 7 | version = "0.24.2" |
8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 8 | source = "registry+https://github.com/rust-lang/crates.io-index" |
9 | checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" | 9 | checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" |
10 | dependencies = [ | 10 | dependencies = [ |
11 | "gimli", | 11 | "gimli", |
12 | ] | 12 | ] |
13 | 13 | ||
14 | [[package]] | 14 | [[package]] |
15 | name = "adler" | 15 | name = "adler2" |
16 | version = "1.0.2" | 16 | version = "2.0.1" |
17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" | ||
19 | |||
20 | [[package]] | ||
21 | name = "ahash" | ||
22 | version = "0.8.11" | ||
23 | source = "registry+https://github.com/rust-lang/crates.io-index" | 17 | source = "registry+https://github.com/rust-lang/crates.io-index" |
24 | checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" | 18 | checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" |
25 | dependencies = [ | ||
26 | "cfg-if", | ||
27 | "once_cell", | ||
28 | "version_check", | ||
29 | "zerocopy", | ||
30 | ] | ||
31 | 19 | ||
32 | [[package]] | 20 | [[package]] |
33 | name = "aho-corasick" | 21 | name = "aho-corasick" |
@@ -40,9 +28,9 @@ dependencies = [ | |||
40 | 28 | ||
41 | [[package]] | 29 | [[package]] |
42 | name = "allocator-api2" | 30 | name = "allocator-api2" |
43 | version = "0.2.18" | 31 | version = "0.2.21" |
44 | source = "registry+https://github.com/rust-lang/crates.io-index" | 32 | source = "registry+https://github.com/rust-lang/crates.io-index" |
45 | checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" | 33 | checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" |
46 | 34 | ||
47 | [[package]] | 35 | [[package]] |
48 | name = "android-tzdata" | 36 | name = "android-tzdata" |
@@ -61,32 +49,27 @@ dependencies = [ | |||
61 | 49 | ||
62 | [[package]] | 50 | [[package]] |
63 | name = "anyhow" | 51 | name = "anyhow" |
64 | version = "1.0.82" | 52 | version = "1.0.99" |
65 | source = "registry+https://github.com/rust-lang/crates.io-index" | 53 | source = "registry+https://github.com/rust-lang/crates.io-index" |
66 | checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" | 54 | checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" |
67 | 55 | ||
68 | [[package]] | 56 | [[package]] |
69 | name = "async-trait" | 57 | name = "atomic-waker" |
70 | version = "0.1.80" | 58 | version = "1.1.2" |
71 | source = "registry+https://github.com/rust-lang/crates.io-index" | 59 | source = "registry+https://github.com/rust-lang/crates.io-index" |
72 | checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" | 60 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" |
73 | dependencies = [ | ||
74 | "proc-macro2", | ||
75 | "quote", | ||
76 | "syn", | ||
77 | ] | ||
78 | 61 | ||
79 | [[package]] | 62 | [[package]] |
80 | name = "autocfg" | 63 | name = "autocfg" |
81 | version = "1.2.0" | 64 | version = "1.5.0" |
82 | source = "registry+https://github.com/rust-lang/crates.io-index" | 65 | source = "registry+https://github.com/rust-lang/crates.io-index" |
83 | checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" | 66 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" |
84 | 67 | ||
85 | [[package]] | 68 | [[package]] |
86 | name = "aws-config" | 69 | name = "aws-config" |
87 | version = "1.2.1" | 70 | version = "1.8.6" |
88 | source = "registry+https://github.com/rust-lang/crates.io-index" | 71 | source = "registry+https://github.com/rust-lang/crates.io-index" |
89 | checksum = "b2a4707646259764ab59fd9a50e9de2e92c637b28b36285d6f6fa030e915fbd9" | 72 | checksum = "8bc1b40fb26027769f16960d2f4a6bc20c4bb755d403e552c8c1a73af433c246" |
90 | dependencies = [ | 73 | dependencies = [ |
91 | "aws-credential-types", | 74 | "aws-credential-types", |
92 | "aws-runtime", | 75 | "aws-runtime", |
@@ -103,8 +86,7 @@ dependencies = [ | |||
103 | "bytes", | 86 | "bytes", |
104 | "fastrand", | 87 | "fastrand", |
105 | "hex", | 88 | "hex", |
106 | "http 0.2.12", | 89 | "http 1.3.1", |
107 | "hyper 0.14.28", | ||
108 | "ring", | 90 | "ring", |
109 | "time", | 91 | "time", |
110 | "tokio", | 92 | "tokio", |
@@ -115,9 +97,9 @@ dependencies = [ | |||
115 | 97 | ||
116 | [[package]] | 98 | [[package]] |
117 | name = "aws-credential-types" | 99 | name = "aws-credential-types" |
118 | version = "1.2.0" | 100 | version = "1.2.6" |
119 | source = "registry+https://github.com/rust-lang/crates.io-index" | 101 | source = "registry+https://github.com/rust-lang/crates.io-index" |
120 | checksum = "e16838e6c9e12125face1c1eff1343c75e3ff540de98ff7ebd61874a89bcfeb9" | 102 | checksum = "d025db5d9f52cbc413b167136afb3d8aeea708c0d8884783cf6253be5e22f6f2" |
121 | dependencies = [ | 103 | dependencies = [ |
122 | "aws-smithy-async", | 104 | "aws-smithy-async", |
123 | "aws-smithy-runtime-api", | 105 | "aws-smithy-runtime-api", |
@@ -126,16 +108,40 @@ dependencies = [ | |||
126 | ] | 108 | ] |
127 | 109 | ||
128 | [[package]] | 110 | [[package]] |
111 | name = "aws-lc-rs" | ||
112 | version = "1.13.3" | ||
113 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
114 | checksum = "5c953fe1ba023e6b7730c0d4b031d06f267f23a46167dcbd40316644b10a17ba" | ||
115 | dependencies = [ | ||
116 | "aws-lc-sys", | ||
117 | "zeroize", | ||
118 | ] | ||
119 | |||
120 | [[package]] | ||
121 | name = "aws-lc-sys" | ||
122 | version = "0.30.0" | ||
123 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
124 | checksum = "dbfd150b5dbdb988bcc8fb1fe787eb6b7ee6180ca24da683b61ea5405f3d43ff" | ||
125 | dependencies = [ | ||
126 | "bindgen", | ||
127 | "cc", | ||
128 | "cmake", | ||
129 | "dunce", | ||
130 | "fs_extra", | ||
131 | ] | ||
132 | |||
133 | [[package]] | ||
129 | name = "aws-runtime" | 134 | name = "aws-runtime" |
130 | version = "1.2.0" | 135 | version = "1.5.10" |
131 | source = "registry+https://github.com/rust-lang/crates.io-index" | 136 | source = "registry+https://github.com/rust-lang/crates.io-index" |
132 | checksum = "f4963ac9ff2d33a4231b3806c1c69f578f221a9cabb89ad2bde62ce2b442c8a7" | 137 | checksum = "c034a1bc1d70e16e7f4e4caf7e9f7693e4c9c24cd91cf17c2a0b21abaebc7c8b" |
133 | dependencies = [ | 138 | dependencies = [ |
134 | "aws-credential-types", | 139 | "aws-credential-types", |
135 | "aws-sigv4", | 140 | "aws-sigv4", |
136 | "aws-smithy-async", | 141 | "aws-smithy-async", |
137 | "aws-smithy-eventstream", | 142 | "aws-smithy-eventstream", |
138 | "aws-smithy-http", | 143 | "aws-smithy-http", |
144 | "aws-smithy-runtime", | ||
139 | "aws-smithy-runtime-api", | 145 | "aws-smithy-runtime-api", |
140 | "aws-smithy-types", | 146 | "aws-smithy-types", |
141 | "aws-types", | 147 | "aws-types", |
@@ -151,11 +157,10 @@ dependencies = [ | |||
151 | 157 | ||
152 | [[package]] | 158 | [[package]] |
153 | name = "aws-sdk-s3" | 159 | name = "aws-sdk-s3" |
154 | version = "1.24.0" | 160 | version = "1.104.0" |
155 | source = "registry+https://github.com/rust-lang/crates.io-index" | 161 | source = "registry+https://github.com/rust-lang/crates.io-index" |
156 | checksum = "7f522b68eb0294c59f7beb0defa30e84fed24ebc50ee219e111d6c33eaea96a8" | 162 | checksum = "38c488cd6abb0ec9811c401894191932e941c5f91dc226043edacd0afa1634bc" |
157 | dependencies = [ | 163 | dependencies = [ |
158 | "ahash", | ||
159 | "aws-credential-types", | 164 | "aws-credential-types", |
160 | "aws-runtime", | 165 | "aws-runtime", |
161 | "aws-sigv4", | 166 | "aws-sigv4", |
@@ -174,9 +179,9 @@ dependencies = [ | |||
174 | "hex", | 179 | "hex", |
175 | "hmac", | 180 | "hmac", |
176 | "http 0.2.12", | 181 | "http 0.2.12", |
182 | "http 1.3.1", | ||
177 | "http-body 0.4.6", | 183 | "http-body 0.4.6", |
178 | "lru", | 184 | "lru", |
179 | "once_cell", | ||
180 | "percent-encoding", | 185 | "percent-encoding", |
181 | "regex-lite", | 186 | "regex-lite", |
182 | "sha2", | 187 | "sha2", |
@@ -186,9 +191,9 @@ dependencies = [ | |||
186 | 191 | ||
187 | [[package]] | 192 | [[package]] |
188 | name = "aws-sdk-sso" | 193 | name = "aws-sdk-sso" |
189 | version = "1.21.0" | 194 | version = "1.83.0" |
190 | source = "registry+https://github.com/rust-lang/crates.io-index" | 195 | source = "registry+https://github.com/rust-lang/crates.io-index" |
191 | checksum = "3d70fb493f4183f5102d8a8d0cc9b57aec29a762f55c0e7bf527e0f7177bb408" | 196 | checksum = "643cd43af212d2a1c4dedff6f044d7e1961e5d9e7cfe773d70f31d9842413886" |
192 | dependencies = [ | 197 | dependencies = [ |
193 | "aws-credential-types", | 198 | "aws-credential-types", |
194 | "aws-runtime", | 199 | "aws-runtime", |
@@ -200,17 +205,17 @@ dependencies = [ | |||
200 | "aws-smithy-types", | 205 | "aws-smithy-types", |
201 | "aws-types", | 206 | "aws-types", |
202 | "bytes", | 207 | "bytes", |
208 | "fastrand", | ||
203 | "http 0.2.12", | 209 | "http 0.2.12", |
204 | "once_cell", | ||
205 | "regex-lite", | 210 | "regex-lite", |
206 | "tracing", | 211 | "tracing", |
207 | ] | 212 | ] |
208 | 213 | ||
209 | [[package]] | 214 | [[package]] |
210 | name = "aws-sdk-ssooidc" | 215 | name = "aws-sdk-ssooidc" |
211 | version = "1.21.0" | 216 | version = "1.84.0" |
212 | source = "registry+https://github.com/rust-lang/crates.io-index" | 217 | source = "registry+https://github.com/rust-lang/crates.io-index" |
213 | checksum = "de3f37549b3e38b7ea5efd419d4d7add6ea1e55223506eb0b4fef9d25e7cc90d" | 218 | checksum = "20ec4a95bd48e0db7a424356a161f8d87bd6a4f0af37204775f0da03d9e39fc3" |
214 | dependencies = [ | 219 | dependencies = [ |
215 | "aws-credential-types", | 220 | "aws-credential-types", |
216 | "aws-runtime", | 221 | "aws-runtime", |
@@ -222,17 +227,17 @@ dependencies = [ | |||
222 | "aws-smithy-types", | 227 | "aws-smithy-types", |
223 | "aws-types", | 228 | "aws-types", |
224 | "bytes", | 229 | "bytes", |
230 | "fastrand", | ||
225 | "http 0.2.12", | 231 | "http 0.2.12", |
226 | "once_cell", | ||
227 | "regex-lite", | 232 | "regex-lite", |
228 | "tracing", | 233 | "tracing", |
229 | ] | 234 | ] |
230 | 235 | ||
231 | [[package]] | 236 | [[package]] |
232 | name = "aws-sdk-sts" | 237 | name = "aws-sdk-sts" |
233 | version = "1.21.0" | 238 | version = "1.85.0" |
234 | source = "registry+https://github.com/rust-lang/crates.io-index" | 239 | source = "registry+https://github.com/rust-lang/crates.io-index" |
235 | checksum = "3b2ff219a5d4b795cd33251c19dbe9c4b401f2b2cbe513e07c76ada644eaf34e" | 240 | checksum = "410309ad0df4606bc721aff0d89c3407682845453247213a0ccc5ff8801ee107" |
236 | dependencies = [ | 241 | dependencies = [ |
237 | "aws-credential-types", | 242 | "aws-credential-types", |
238 | "aws-runtime", | 243 | "aws-runtime", |
@@ -245,17 +250,17 @@ dependencies = [ | |||
245 | "aws-smithy-types", | 250 | "aws-smithy-types", |
246 | "aws-smithy-xml", | 251 | "aws-smithy-xml", |
247 | "aws-types", | 252 | "aws-types", |
253 | "fastrand", | ||
248 | "http 0.2.12", | 254 | "http 0.2.12", |
249 | "once_cell", | ||
250 | "regex-lite", | 255 | "regex-lite", |
251 | "tracing", | 256 | "tracing", |
252 | ] | 257 | ] |
253 | 258 | ||
254 | [[package]] | 259 | [[package]] |
255 | name = "aws-sigv4" | 260 | name = "aws-sigv4" |
256 | version = "1.2.1" | 261 | version = "1.3.4" |
257 | source = "registry+https://github.com/rust-lang/crates.io-index" | 262 | source = "registry+https://github.com/rust-lang/crates.io-index" |
258 | checksum = "58b56f1cbe6fd4d0c2573df72868f20ab1c125ca9c9dbce17927a463433a2e57" | 263 | checksum = "084c34162187d39e3740cb635acd73c4e3a551a36146ad6fe8883c929c9f876c" |
259 | dependencies = [ | 264 | dependencies = [ |
260 | "aws-credential-types", | 265 | "aws-credential-types", |
261 | "aws-smithy-eventstream", | 266 | "aws-smithy-eventstream", |
@@ -268,8 +273,7 @@ dependencies = [ | |||
268 | "hex", | 273 | "hex", |
269 | "hmac", | 274 | "hmac", |
270 | "http 0.2.12", | 275 | "http 0.2.12", |
271 | "http 1.1.0", | 276 | "http 1.3.1", |
272 | "once_cell", | ||
273 | "p256", | 277 | "p256", |
274 | "percent-encoding", | 278 | "percent-encoding", |
275 | "ring", | 279 | "ring", |
@@ -282,9 +286,9 @@ dependencies = [ | |||
282 | 286 | ||
283 | [[package]] | 287 | [[package]] |
284 | name = "aws-smithy-async" | 288 | name = "aws-smithy-async" |
285 | version = "1.2.1" | 289 | version = "1.2.5" |
286 | source = "registry+https://github.com/rust-lang/crates.io-index" | 290 | source = "registry+https://github.com/rust-lang/crates.io-index" |
287 | checksum = "62220bc6e97f946ddd51b5f1361f78996e704677afc518a4ff66b7a72ea1378c" | 291 | checksum = "1e190749ea56f8c42bf15dd76c65e14f8f765233e6df9b0506d9d934ebef867c" |
288 | dependencies = [ | 292 | dependencies = [ |
289 | "futures-util", | 293 | "futures-util", |
290 | "pin-project-lite", | 294 | "pin-project-lite", |
@@ -293,15 +297,14 @@ dependencies = [ | |||
293 | 297 | ||
294 | [[package]] | 298 | [[package]] |
295 | name = "aws-smithy-checksums" | 299 | name = "aws-smithy-checksums" |
296 | version = "0.60.7" | 300 | version = "0.63.8" |
297 | source = "registry+https://github.com/rust-lang/crates.io-index" | 301 | source = "registry+https://github.com/rust-lang/crates.io-index" |
298 | checksum = "83fa43bc04a6b2441968faeab56e68da3812f978a670a5db32accbdcafddd12f" | 302 | checksum = "56d2df0314b8e307995a3b86d44565dfe9de41f876901a7d71886c756a25979f" |
299 | dependencies = [ | 303 | dependencies = [ |
300 | "aws-smithy-http", | 304 | "aws-smithy-http", |
301 | "aws-smithy-types", | 305 | "aws-smithy-types", |
302 | "bytes", | 306 | "bytes", |
303 | "crc32c", | 307 | "crc-fast", |
304 | "crc32fast", | ||
305 | "hex", | 308 | "hex", |
306 | "http 0.2.12", | 309 | "http 0.2.12", |
307 | "http-body 0.4.6", | 310 | "http-body 0.4.6", |
@@ -314,9 +317,9 @@ dependencies = [ | |||
314 | 317 | ||
315 | [[package]] | 318 | [[package]] |
316 | name = "aws-smithy-eventstream" | 319 | name = "aws-smithy-eventstream" |
317 | version = "0.60.4" | 320 | version = "0.60.11" |
318 | source = "registry+https://github.com/rust-lang/crates.io-index" | 321 | source = "registry+https://github.com/rust-lang/crates.io-index" |
319 | checksum = "e6363078f927f612b970edf9d1903ef5cef9a64d1e8423525ebb1f0a1633c858" | 322 | checksum = "182b03393e8c677347fb5705a04a9392695d47d20ef0a2f8cfe28c8e6b9b9778" |
320 | dependencies = [ | 323 | dependencies = [ |
321 | "aws-smithy-types", | 324 | "aws-smithy-types", |
322 | "bytes", | 325 | "bytes", |
@@ -325,9 +328,9 @@ dependencies = [ | |||
325 | 328 | ||
326 | [[package]] | 329 | [[package]] |
327 | name = "aws-smithy-http" | 330 | name = "aws-smithy-http" |
328 | version = "0.60.8" | 331 | version = "0.62.3" |
329 | source = "registry+https://github.com/rust-lang/crates.io-index" | 332 | source = "registry+https://github.com/rust-lang/crates.io-index" |
330 | checksum = "4a7de001a1b9a25601016d8057ea16e31a45fdca3751304c8edf4ad72e706c08" | 333 | checksum = "7c4dacf2d38996cf729f55e7a762b30918229917eca115de45dfa8dfb97796c9" |
331 | dependencies = [ | 334 | dependencies = [ |
332 | "aws-smithy-eventstream", | 335 | "aws-smithy-eventstream", |
333 | "aws-smithy-runtime-api", | 336 | "aws-smithy-runtime-api", |
@@ -336,8 +339,8 @@ dependencies = [ | |||
336 | "bytes-utils", | 339 | "bytes-utils", |
337 | "futures-core", | 340 | "futures-core", |
338 | "http 0.2.12", | 341 | "http 0.2.12", |
342 | "http 1.3.1", | ||
339 | "http-body 0.4.6", | 343 | "http-body 0.4.6", |
340 | "once_cell", | ||
341 | "percent-encoding", | 344 | "percent-encoding", |
342 | "pin-project-lite", | 345 | "pin-project-lite", |
343 | "pin-utils", | 346 | "pin-utils", |
@@ -345,15 +348,54 @@ dependencies = [ | |||
345 | ] | 348 | ] |
346 | 349 | ||
347 | [[package]] | 350 | [[package]] |
351 | name = "aws-smithy-http-client" | ||
352 | version = "1.1.1" | ||
353 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
354 | checksum = "147e8eea63a40315d704b97bf9bc9b8c1402ae94f89d5ad6f7550d963309da1b" | ||
355 | dependencies = [ | ||
356 | "aws-smithy-async", | ||
357 | "aws-smithy-runtime-api", | ||
358 | "aws-smithy-types", | ||
359 | "h2 0.3.27", | ||
360 | "h2 0.4.12", | ||
361 | "http 0.2.12", | ||
362 | "http 1.3.1", | ||
363 | "http-body 0.4.6", | ||
364 | "hyper 0.14.32", | ||
365 | "hyper 1.7.0", | ||
366 | "hyper-rustls 0.24.2", | ||
367 | "hyper-rustls 0.27.7", | ||
368 | "hyper-util", | ||
369 | "pin-project-lite", | ||
370 | "rustls 0.21.12", | ||
371 | "rustls 0.23.31", | ||
372 | "rustls-native-certs 0.8.1", | ||
373 | "rustls-pki-types", | ||
374 | "tokio", | ||
375 | "tokio-rustls 0.26.2", | ||
376 | "tower", | ||
377 | "tracing", | ||
378 | ] | ||
379 | |||
380 | [[package]] | ||
348 | name = "aws-smithy-json" | 381 | name = "aws-smithy-json" |
349 | version = "0.60.7" | 382 | version = "0.61.5" |
350 | source = "registry+https://github.com/rust-lang/crates.io-index" | 383 | source = "registry+https://github.com/rust-lang/crates.io-index" |
351 | checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6" | 384 | checksum = "eaa31b350998e703e9826b2104dd6f63be0508666e1aba88137af060e8944047" |
352 | dependencies = [ | 385 | dependencies = [ |
353 | "aws-smithy-types", | 386 | "aws-smithy-types", |
354 | ] | 387 | ] |
355 | 388 | ||
356 | [[package]] | 389 | [[package]] |
390 | name = "aws-smithy-observability" | ||
391 | version = "0.1.3" | ||
392 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
393 | checksum = "9364d5989ac4dd918e5cc4c4bdcc61c9be17dcd2586ea7f69e348fc7c6cab393" | ||
394 | dependencies = [ | ||
395 | "aws-smithy-runtime-api", | ||
396 | ] | ||
397 | |||
398 | [[package]] | ||
357 | name = "aws-smithy-query" | 399 | name = "aws-smithy-query" |
358 | version = "0.60.7" | 400 | version = "0.60.7" |
359 | source = "registry+https://github.com/rust-lang/crates.io-index" | 401 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -365,41 +407,39 @@ dependencies = [ | |||
365 | 407 | ||
366 | [[package]] | 408 | [[package]] |
367 | name = "aws-smithy-runtime" | 409 | name = "aws-smithy-runtime" |
368 | version = "1.3.1" | 410 | version = "1.9.1" |
369 | source = "registry+https://github.com/rust-lang/crates.io-index" | 411 | source = "registry+https://github.com/rust-lang/crates.io-index" |
370 | checksum = "44e7945379821074549168917e89e60630647e186a69243248f08c6d168b975a" | 412 | checksum = "d3946acbe1ead1301ba6862e712c7903ca9bb230bdf1fbd1b5ac54158ef2ab1f" |
371 | dependencies = [ | 413 | dependencies = [ |
372 | "aws-smithy-async", | 414 | "aws-smithy-async", |
373 | "aws-smithy-http", | 415 | "aws-smithy-http", |
416 | "aws-smithy-http-client", | ||
417 | "aws-smithy-observability", | ||
374 | "aws-smithy-runtime-api", | 418 | "aws-smithy-runtime-api", |
375 | "aws-smithy-types", | 419 | "aws-smithy-types", |
376 | "bytes", | 420 | "bytes", |
377 | "fastrand", | 421 | "fastrand", |
378 | "h2", | ||
379 | "http 0.2.12", | 422 | "http 0.2.12", |
423 | "http 1.3.1", | ||
380 | "http-body 0.4.6", | 424 | "http-body 0.4.6", |
381 | "http-body 1.0.0", | 425 | "http-body 1.0.1", |
382 | "hyper 0.14.28", | ||
383 | "hyper-rustls", | ||
384 | "once_cell", | ||
385 | "pin-project-lite", | 426 | "pin-project-lite", |
386 | "pin-utils", | 427 | "pin-utils", |
387 | "rustls", | ||
388 | "tokio", | 428 | "tokio", |
389 | "tracing", | 429 | "tracing", |
390 | ] | 430 | ] |
391 | 431 | ||
392 | [[package]] | 432 | [[package]] |
393 | name = "aws-smithy-runtime-api" | 433 | name = "aws-smithy-runtime-api" |
394 | version = "1.4.0" | 434 | version = "1.9.0" |
395 | source = "registry+https://github.com/rust-lang/crates.io-index" | 435 | source = "registry+https://github.com/rust-lang/crates.io-index" |
396 | checksum = "4cc56a5c96ec741de6c5e6bf1ce6948be969d6506dfa9c39cffc284e31e4979b" | 436 | checksum = "07f5e0fc8a6b3f2303f331b94504bbf754d85488f402d6f1dd7a6080f99afe56" |
397 | dependencies = [ | 437 | dependencies = [ |
398 | "aws-smithy-async", | 438 | "aws-smithy-async", |
399 | "aws-smithy-types", | 439 | "aws-smithy-types", |
400 | "bytes", | 440 | "bytes", |
401 | "http 0.2.12", | 441 | "http 0.2.12", |
402 | "http 1.1.0", | 442 | "http 1.3.1", |
403 | "pin-project-lite", | 443 | "pin-project-lite", |
404 | "tokio", | 444 | "tokio", |
405 | "tracing", | 445 | "tracing", |
@@ -408,18 +448,18 @@ dependencies = [ | |||
408 | 448 | ||
409 | [[package]] | 449 | [[package]] |
410 | name = "aws-smithy-types" | 450 | name = "aws-smithy-types" |
411 | version = "1.1.8" | 451 | version = "1.3.2" |
412 | source = "registry+https://github.com/rust-lang/crates.io-index" | 452 | source = "registry+https://github.com/rust-lang/crates.io-index" |
413 | checksum = "abe14dceea1e70101d38fbf2a99e6a34159477c0fb95e68e05c66bd7ae4c3729" | 453 | checksum = "d498595448e43de7f4296b7b7a18a8a02c61ec9349128c80a368f7c3b4ab11a8" |
414 | dependencies = [ | 454 | dependencies = [ |
415 | "base64-simd", | 455 | "base64-simd", |
416 | "bytes", | 456 | "bytes", |
417 | "bytes-utils", | 457 | "bytes-utils", |
418 | "futures-core", | 458 | "futures-core", |
419 | "http 0.2.12", | 459 | "http 0.2.12", |
420 | "http 1.1.0", | 460 | "http 1.3.1", |
421 | "http-body 0.4.6", | 461 | "http-body 0.4.6", |
422 | "http-body 1.0.0", | 462 | "http-body 1.0.1", |
423 | "http-body-util", | 463 | "http-body-util", |
424 | "itoa", | 464 | "itoa", |
425 | "num-integer", | 465 | "num-integer", |
@@ -434,42 +474,41 @@ dependencies = [ | |||
434 | 474 | ||
435 | [[package]] | 475 | [[package]] |
436 | name = "aws-smithy-xml" | 476 | name = "aws-smithy-xml" |
437 | version = "0.60.8" | 477 | version = "0.60.10" |
438 | source = "registry+https://github.com/rust-lang/crates.io-index" | 478 | source = "registry+https://github.com/rust-lang/crates.io-index" |
439 | checksum = "d123fbc2a4adc3c301652ba8e149bf4bc1d1725affb9784eb20c953ace06bf55" | 479 | checksum = "3db87b96cb1b16c024980f133968d52882ca0daaee3a086c6decc500f6c99728" |
440 | dependencies = [ | 480 | dependencies = [ |
441 | "xmlparser", | 481 | "xmlparser", |
442 | ] | 482 | ] |
443 | 483 | ||
444 | [[package]] | 484 | [[package]] |
445 | name = "aws-types" | 485 | name = "aws-types" |
446 | version = "1.2.0" | 486 | version = "1.3.8" |
447 | source = "registry+https://github.com/rust-lang/crates.io-index" | 487 | source = "registry+https://github.com/rust-lang/crates.io-index" |
448 | checksum = "5a43b56df2c529fe44cb4d92bd64d0479883fb9608ff62daede4df5405381814" | 488 | checksum = "b069d19bf01e46298eaedd7c6f283fe565a59263e53eebec945f3e6398f42390" |
449 | dependencies = [ | 489 | dependencies = [ |
450 | "aws-credential-types", | 490 | "aws-credential-types", |
451 | "aws-smithy-async", | 491 | "aws-smithy-async", |
452 | "aws-smithy-runtime-api", | 492 | "aws-smithy-runtime-api", |
453 | "aws-smithy-types", | 493 | "aws-smithy-types", |
454 | "http 0.2.12", | ||
455 | "rustc_version", | 494 | "rustc_version", |
456 | "tracing", | 495 | "tracing", |
457 | ] | 496 | ] |
458 | 497 | ||
459 | [[package]] | 498 | [[package]] |
460 | name = "axum" | 499 | name = "axum" |
461 | version = "0.7.5" | 500 | version = "0.8.4" |
462 | source = "registry+https://github.com/rust-lang/crates.io-index" | 501 | source = "registry+https://github.com/rust-lang/crates.io-index" |
463 | checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" | 502 | checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5" |
464 | dependencies = [ | 503 | dependencies = [ |
465 | "async-trait", | ||
466 | "axum-core", | 504 | "axum-core", |
467 | "bytes", | 505 | "bytes", |
506 | "form_urlencoded", | ||
468 | "futures-util", | 507 | "futures-util", |
469 | "http 1.1.0", | 508 | "http 1.3.1", |
470 | "http-body 1.0.0", | 509 | "http-body 1.0.1", |
471 | "http-body-util", | 510 | "http-body-util", |
472 | "hyper 1.3.1", | 511 | "hyper 1.7.0", |
473 | "hyper-util", | 512 | "hyper-util", |
474 | "itoa", | 513 | "itoa", |
475 | "matchit", | 514 | "matchit", |
@@ -482,7 +521,7 @@ dependencies = [ | |||
482 | "serde_json", | 521 | "serde_json", |
483 | "serde_path_to_error", | 522 | "serde_path_to_error", |
484 | "serde_urlencoded", | 523 | "serde_urlencoded", |
485 | "sync_wrapper 1.0.1", | 524 | "sync_wrapper", |
486 | "tokio", | 525 | "tokio", |
487 | "tower", | 526 | "tower", |
488 | "tower-layer", | 527 | "tower-layer", |
@@ -492,20 +531,19 @@ dependencies = [ | |||
492 | 531 | ||
493 | [[package]] | 532 | [[package]] |
494 | name = "axum-core" | 533 | name = "axum-core" |
495 | version = "0.4.3" | 534 | version = "0.5.2" |
496 | source = "registry+https://github.com/rust-lang/crates.io-index" | 535 | source = "registry+https://github.com/rust-lang/crates.io-index" |
497 | checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" | 536 | checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" |
498 | dependencies = [ | 537 | dependencies = [ |
499 | "async-trait", | ||
500 | "bytes", | 538 | "bytes", |
501 | "futures-util", | 539 | "futures-core", |
502 | "http 1.1.0", | 540 | "http 1.3.1", |
503 | "http-body 1.0.0", | 541 | "http-body 1.0.1", |
504 | "http-body-util", | 542 | "http-body-util", |
505 | "mime", | 543 | "mime", |
506 | "pin-project-lite", | 544 | "pin-project-lite", |
507 | "rustversion", | 545 | "rustversion", |
508 | "sync_wrapper 0.1.2", | 546 | "sync_wrapper", |
509 | "tower-layer", | 547 | "tower-layer", |
510 | "tower-service", | 548 | "tower-service", |
511 | "tracing", | 549 | "tracing", |
@@ -513,17 +551,17 @@ dependencies = [ | |||
513 | 551 | ||
514 | [[package]] | 552 | [[package]] |
515 | name = "backtrace" | 553 | name = "backtrace" |
516 | version = "0.3.71" | 554 | version = "0.3.75" |
517 | source = "registry+https://github.com/rust-lang/crates.io-index" | 555 | source = "registry+https://github.com/rust-lang/crates.io-index" |
518 | checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" | 556 | checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" |
519 | dependencies = [ | 557 | dependencies = [ |
520 | "addr2line", | 558 | "addr2line", |
521 | "cc", | ||
522 | "cfg-if", | 559 | "cfg-if", |
523 | "libc", | 560 | "libc", |
524 | "miniz_oxide", | 561 | "miniz_oxide", |
525 | "object", | 562 | "object", |
526 | "rustc-demangle", | 563 | "rustc-demangle", |
564 | "windows-targets 0.52.6", | ||
527 | ] | 565 | ] |
528 | 566 | ||
529 | [[package]] | 567 | [[package]] |
@@ -539,6 +577,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
539 | checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" | 577 | checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" |
540 | 578 | ||
541 | [[package]] | 579 | [[package]] |
580 | name = "base64" | ||
581 | version = "0.22.1" | ||
582 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
583 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" | ||
584 | |||
585 | [[package]] | ||
542 | name = "base64-simd" | 586 | name = "base64-simd" |
543 | version = "0.8.0" | 587 | version = "0.8.0" |
544 | source = "registry+https://github.com/rust-lang/crates.io-index" | 588 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -550,21 +594,38 @@ dependencies = [ | |||
550 | 594 | ||
551 | [[package]] | 595 | [[package]] |
552 | name = "base64ct" | 596 | name = "base64ct" |
553 | version = "1.6.0" | 597 | version = "1.8.0" |
554 | source = "registry+https://github.com/rust-lang/crates.io-index" | 598 | source = "registry+https://github.com/rust-lang/crates.io-index" |
555 | checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" | 599 | checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" |
556 | 600 | ||
557 | [[package]] | 601 | [[package]] |
558 | name = "bitflags" | 602 | name = "bindgen" |
559 | version = "1.3.2" | 603 | version = "0.69.5" |
560 | source = "registry+https://github.com/rust-lang/crates.io-index" | 604 | source = "registry+https://github.com/rust-lang/crates.io-index" |
561 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | 605 | checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" |
606 | dependencies = [ | ||
607 | "bitflags", | ||
608 | "cexpr", | ||
609 | "clang-sys", | ||
610 | "itertools", | ||
611 | "lazy_static", | ||
612 | "lazycell", | ||
613 | "log", | ||
614 | "prettyplease", | ||
615 | "proc-macro2", | ||
616 | "quote", | ||
617 | "regex", | ||
618 | "rustc-hash", | ||
619 | "shlex", | ||
620 | "syn", | ||
621 | "which", | ||
622 | ] | ||
562 | 623 | ||
563 | [[package]] | 624 | [[package]] |
564 | name = "bitflags" | 625 | name = "bitflags" |
565 | version = "2.5.0" | 626 | version = "2.9.3" |
566 | source = "registry+https://github.com/rust-lang/crates.io-index" | 627 | source = "registry+https://github.com/rust-lang/crates.io-index" |
567 | checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" | 628 | checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d" |
568 | 629 | ||
569 | [[package]] | 630 | [[package]] |
570 | name = "block-buffer" | 631 | name = "block-buffer" |
@@ -577,15 +638,15 @@ dependencies = [ | |||
577 | 638 | ||
578 | [[package]] | 639 | [[package]] |
579 | name = "bumpalo" | 640 | name = "bumpalo" |
580 | version = "3.16.0" | 641 | version = "3.19.0" |
581 | source = "registry+https://github.com/rust-lang/crates.io-index" | 642 | source = "registry+https://github.com/rust-lang/crates.io-index" |
582 | checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" | 643 | checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" |
583 | 644 | ||
584 | [[package]] | 645 | [[package]] |
585 | name = "bytes" | 646 | name = "bytes" |
586 | version = "1.6.0" | 647 | version = "1.10.1" |
587 | source = "registry+https://github.com/rust-lang/crates.io-index" | 648 | source = "registry+https://github.com/rust-lang/crates.io-index" |
588 | checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" | 649 | checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" |
589 | 650 | ||
590 | [[package]] | 651 | [[package]] |
591 | name = "bytes-utils" | 652 | name = "bytes-utils" |
@@ -599,21 +660,36 @@ dependencies = [ | |||
599 | 660 | ||
600 | [[package]] | 661 | [[package]] |
601 | name = "cc" | 662 | name = "cc" |
602 | version = "1.0.95" | 663 | version = "1.2.35" |
603 | source = "registry+https://github.com/rust-lang/crates.io-index" | 664 | source = "registry+https://github.com/rust-lang/crates.io-index" |
604 | checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b" | 665 | checksum = "590f9024a68a8c40351881787f1934dc11afd69090f5edb6831464694d836ea3" |
666 | dependencies = [ | ||
667 | "find-msvc-tools", | ||
668 | "jobserver", | ||
669 | "libc", | ||
670 | "shlex", | ||
671 | ] | ||
672 | |||
673 | [[package]] | ||
674 | name = "cexpr" | ||
675 | version = "0.6.0" | ||
676 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
677 | checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" | ||
678 | dependencies = [ | ||
679 | "nom", | ||
680 | ] | ||
605 | 681 | ||
606 | [[package]] | 682 | [[package]] |
607 | name = "cfg-if" | 683 | name = "cfg-if" |
608 | version = "1.0.0" | 684 | version = "1.0.3" |
609 | source = "registry+https://github.com/rust-lang/crates.io-index" | 685 | source = "registry+https://github.com/rust-lang/crates.io-index" |
610 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | 686 | checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" |
611 | 687 | ||
612 | [[package]] | 688 | [[package]] |
613 | name = "chrono" | 689 | name = "chrono" |
614 | version = "0.4.38" | 690 | version = "0.4.41" |
615 | source = "registry+https://github.com/rust-lang/crates.io-index" | 691 | source = "registry+https://github.com/rust-lang/crates.io-index" |
616 | checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" | 692 | checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" |
617 | dependencies = [ | 693 | dependencies = [ |
618 | "android-tzdata", | 694 | "android-tzdata", |
619 | "iana-time-zone", | 695 | "iana-time-zone", |
@@ -621,7 +697,27 @@ dependencies = [ | |||
621 | "num-traits", | 697 | "num-traits", |
622 | "serde", | 698 | "serde", |
623 | "wasm-bindgen", | 699 | "wasm-bindgen", |
624 | "windows-targets 0.52.5", | 700 | "windows-link", |
701 | ] | ||
702 | |||
703 | [[package]] | ||
704 | name = "clang-sys" | ||
705 | version = "1.8.1" | ||
706 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
707 | checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" | ||
708 | dependencies = [ | ||
709 | "glob", | ||
710 | "libc", | ||
711 | "libloading", | ||
712 | ] | ||
713 | |||
714 | [[package]] | ||
715 | name = "cmake" | ||
716 | version = "0.1.54" | ||
717 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
718 | checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0" | ||
719 | dependencies = [ | ||
720 | "cc", | ||
625 | ] | 721 | ] |
626 | 722 | ||
627 | [[package]] | 723 | [[package]] |
@@ -641,34 +737,63 @@ dependencies = [ | |||
641 | ] | 737 | ] |
642 | 738 | ||
643 | [[package]] | 739 | [[package]] |
740 | name = "core-foundation" | ||
741 | version = "0.10.1" | ||
742 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
743 | checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" | ||
744 | dependencies = [ | ||
745 | "core-foundation-sys", | ||
746 | "libc", | ||
747 | ] | ||
748 | |||
749 | [[package]] | ||
644 | name = "core-foundation-sys" | 750 | name = "core-foundation-sys" |
645 | version = "0.8.6" | 751 | version = "0.8.7" |
646 | source = "registry+https://github.com/rust-lang/crates.io-index" | 752 | source = "registry+https://github.com/rust-lang/crates.io-index" |
647 | checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" | 753 | checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" |
648 | 754 | ||
649 | [[package]] | 755 | [[package]] |
650 | name = "cpufeatures" | 756 | name = "cpufeatures" |
651 | version = "0.2.12" | 757 | version = "0.2.17" |
652 | source = "registry+https://github.com/rust-lang/crates.io-index" | 758 | source = "registry+https://github.com/rust-lang/crates.io-index" |
653 | checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" | 759 | checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" |
654 | dependencies = [ | 760 | dependencies = [ |
655 | "libc", | 761 | "libc", |
656 | ] | 762 | ] |
657 | 763 | ||
658 | [[package]] | 764 | [[package]] |
659 | name = "crc32c" | 765 | name = "crc" |
660 | version = "0.6.5" | 766 | version = "3.3.0" |
661 | source = "registry+https://github.com/rust-lang/crates.io-index" | 767 | source = "registry+https://github.com/rust-lang/crates.io-index" |
662 | checksum = "89254598aa9b9fa608de44b3ae54c810f0f06d755e24c50177f1f8f31ff50ce2" | 768 | checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" |
663 | dependencies = [ | 769 | dependencies = [ |
664 | "rustc_version", | 770 | "crc-catalog", |
771 | ] | ||
772 | |||
773 | [[package]] | ||
774 | name = "crc-catalog" | ||
775 | version = "2.4.0" | ||
776 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
777 | checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" | ||
778 | |||
779 | [[package]] | ||
780 | name = "crc-fast" | ||
781 | version = "1.3.0" | ||
782 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
783 | checksum = "6bf62af4cc77d8fe1c22dde4e721d87f2f54056139d8c412e1366b740305f56f" | ||
784 | dependencies = [ | ||
785 | "crc", | ||
786 | "digest", | ||
787 | "libc", | ||
788 | "rand", | ||
789 | "regex", | ||
665 | ] | 790 | ] |
666 | 791 | ||
667 | [[package]] | 792 | [[package]] |
668 | name = "crc32fast" | 793 | name = "crc32fast" |
669 | version = "1.4.0" | 794 | version = "1.5.0" |
670 | source = "registry+https://github.com/rust-lang/crates.io-index" | 795 | source = "registry+https://github.com/rust-lang/crates.io-index" |
671 | checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" | 796 | checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" |
672 | dependencies = [ | 797 | dependencies = [ |
673 | "cfg-if", | 798 | "cfg-if", |
674 | ] | 799 | ] |
@@ -680,7 +805,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
680 | checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" | 805 | checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" |
681 | dependencies = [ | 806 | dependencies = [ |
682 | "generic-array", | 807 | "generic-array", |
683 | "rand_core", | 808 | "rand_core 0.6.4", |
684 | "subtle", | 809 | "subtle", |
685 | "zeroize", | 810 | "zeroize", |
686 | ] | 811 | ] |
@@ -691,7 +816,7 @@ version = "0.5.5" | |||
691 | source = "registry+https://github.com/rust-lang/crates.io-index" | 816 | source = "registry+https://github.com/rust-lang/crates.io-index" |
692 | checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" | 817 | checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" |
693 | dependencies = [ | 818 | dependencies = [ |
694 | "rand_core", | 819 | "rand_core 0.6.4", |
695 | "subtle", | 820 | "subtle", |
696 | ] | 821 | ] |
697 | 822 | ||
@@ -717,9 +842,9 @@ dependencies = [ | |||
717 | 842 | ||
718 | [[package]] | 843 | [[package]] |
719 | name = "deranged" | 844 | name = "deranged" |
720 | version = "0.3.11" | 845 | version = "0.5.3" |
721 | source = "registry+https://github.com/rust-lang/crates.io-index" | 846 | source = "registry+https://github.com/rust-lang/crates.io-index" |
722 | checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" | 847 | checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc" |
723 | dependencies = [ | 848 | dependencies = [ |
724 | "powerfmt", | 849 | "powerfmt", |
725 | ] | 850 | ] |
@@ -736,6 +861,23 @@ dependencies = [ | |||
736 | ] | 861 | ] |
737 | 862 | ||
738 | [[package]] | 863 | [[package]] |
864 | name = "displaydoc" | ||
865 | version = "0.2.5" | ||
866 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
867 | checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" | ||
868 | dependencies = [ | ||
869 | "proc-macro2", | ||
870 | "quote", | ||
871 | "syn", | ||
872 | ] | ||
873 | |||
874 | [[package]] | ||
875 | name = "dunce" | ||
876 | version = "1.0.5" | ||
877 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
878 | checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" | ||
879 | |||
880 | [[package]] | ||
739 | name = "ecdsa" | 881 | name = "ecdsa" |
740 | version = "0.14.8" | 882 | version = "0.14.8" |
741 | source = "registry+https://github.com/rust-lang/crates.io-index" | 883 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -749,9 +891,9 @@ dependencies = [ | |||
749 | 891 | ||
750 | [[package]] | 892 | [[package]] |
751 | name = "either" | 893 | name = "either" |
752 | version = "1.11.0" | 894 | version = "1.15.0" |
753 | source = "registry+https://github.com/rust-lang/crates.io-index" | 895 | source = "registry+https://github.com/rust-lang/crates.io-index" |
754 | checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" | 896 | checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" |
755 | 897 | ||
756 | [[package]] | 898 | [[package]] |
757 | name = "elliptic-curve" | 899 | name = "elliptic-curve" |
@@ -767,7 +909,7 @@ dependencies = [ | |||
767 | "generic-array", | 909 | "generic-array", |
768 | "group", | 910 | "group", |
769 | "pkcs8", | 911 | "pkcs8", |
770 | "rand_core", | 912 | "rand_core 0.6.4", |
771 | "sec1", | 913 | "sec1", |
772 | "subtle", | 914 | "subtle", |
773 | "zeroize", | 915 | "zeroize", |
@@ -775,15 +917,25 @@ dependencies = [ | |||
775 | 917 | ||
776 | [[package]] | 918 | [[package]] |
777 | name = "equivalent" | 919 | name = "equivalent" |
778 | version = "1.0.1" | 920 | version = "1.0.2" |
921 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
922 | checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" | ||
923 | |||
924 | [[package]] | ||
925 | name = "errno" | ||
926 | version = "0.3.13" | ||
779 | source = "registry+https://github.com/rust-lang/crates.io-index" | 927 | source = "registry+https://github.com/rust-lang/crates.io-index" |
780 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" | 928 | checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" |
929 | dependencies = [ | ||
930 | "libc", | ||
931 | "windows-sys 0.60.2", | ||
932 | ] | ||
781 | 933 | ||
782 | [[package]] | 934 | [[package]] |
783 | name = "fastrand" | 935 | name = "fastrand" |
784 | version = "2.1.0" | 936 | version = "2.3.0" |
785 | source = "registry+https://github.com/rust-lang/crates.io-index" | 937 | source = "registry+https://github.com/rust-lang/crates.io-index" |
786 | checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" | 938 | checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" |
787 | 939 | ||
788 | [[package]] | 940 | [[package]] |
789 | name = "ff" | 941 | name = "ff" |
@@ -791,57 +943,75 @@ version = "0.12.1" | |||
791 | source = "registry+https://github.com/rust-lang/crates.io-index" | 943 | source = "registry+https://github.com/rust-lang/crates.io-index" |
792 | checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" | 944 | checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" |
793 | dependencies = [ | 945 | dependencies = [ |
794 | "rand_core", | 946 | "rand_core 0.6.4", |
795 | "subtle", | 947 | "subtle", |
796 | ] | 948 | ] |
797 | 949 | ||
798 | [[package]] | 950 | [[package]] |
951 | name = "find-msvc-tools" | ||
952 | version = "0.1.0" | ||
953 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
954 | checksum = "e178e4fba8a2726903f6ba98a6d221e76f9c12c650d5dc0e6afdc50677b49650" | ||
955 | |||
956 | [[package]] | ||
799 | name = "fnv" | 957 | name = "fnv" |
800 | version = "1.0.7" | 958 | version = "1.0.7" |
801 | source = "registry+https://github.com/rust-lang/crates.io-index" | 959 | source = "registry+https://github.com/rust-lang/crates.io-index" |
802 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | 960 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" |
803 | 961 | ||
804 | [[package]] | 962 | [[package]] |
963 | name = "foldhash" | ||
964 | version = "0.1.5" | ||
965 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
966 | checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" | ||
967 | |||
968 | [[package]] | ||
805 | name = "form_urlencoded" | 969 | name = "form_urlencoded" |
806 | version = "1.2.1" | 970 | version = "1.2.2" |
807 | source = "registry+https://github.com/rust-lang/crates.io-index" | 971 | source = "registry+https://github.com/rust-lang/crates.io-index" |
808 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" | 972 | checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" |
809 | dependencies = [ | 973 | dependencies = [ |
810 | "percent-encoding", | 974 | "percent-encoding", |
811 | ] | 975 | ] |
812 | 976 | ||
813 | [[package]] | 977 | [[package]] |
978 | name = "fs_extra" | ||
979 | version = "1.3.0" | ||
980 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
981 | checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" | ||
982 | |||
983 | [[package]] | ||
814 | name = "futures-channel" | 984 | name = "futures-channel" |
815 | version = "0.3.30" | 985 | version = "0.3.31" |
816 | source = "registry+https://github.com/rust-lang/crates.io-index" | 986 | source = "registry+https://github.com/rust-lang/crates.io-index" |
817 | checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" | 987 | checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" |
818 | dependencies = [ | 988 | dependencies = [ |
819 | "futures-core", | 989 | "futures-core", |
820 | ] | 990 | ] |
821 | 991 | ||
822 | [[package]] | 992 | [[package]] |
823 | name = "futures-core" | 993 | name = "futures-core" |
824 | version = "0.3.30" | 994 | version = "0.3.31" |
825 | source = "registry+https://github.com/rust-lang/crates.io-index" | 995 | source = "registry+https://github.com/rust-lang/crates.io-index" |
826 | checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" | 996 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" |
827 | 997 | ||
828 | [[package]] | 998 | [[package]] |
829 | name = "futures-sink" | 999 | name = "futures-sink" |
830 | version = "0.3.30" | 1000 | version = "0.3.31" |
831 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1001 | source = "registry+https://github.com/rust-lang/crates.io-index" |
832 | checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" | 1002 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" |
833 | 1003 | ||
834 | [[package]] | 1004 | [[package]] |
835 | name = "futures-task" | 1005 | name = "futures-task" |
836 | version = "0.3.30" | 1006 | version = "0.3.31" |
837 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1007 | source = "registry+https://github.com/rust-lang/crates.io-index" |
838 | checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" | 1008 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" |
839 | 1009 | ||
840 | [[package]] | 1010 | [[package]] |
841 | name = "futures-util" | 1011 | name = "futures-util" |
842 | version = "0.3.30" | 1012 | version = "0.3.31" |
843 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1013 | source = "registry+https://github.com/rust-lang/crates.io-index" |
844 | checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" | 1014 | checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" |
845 | dependencies = [ | 1015 | dependencies = [ |
846 | "futures-core", | 1016 | "futures-core", |
847 | "futures-task", | 1017 | "futures-task", |
@@ -861,20 +1031,32 @@ dependencies = [ | |||
861 | 1031 | ||
862 | [[package]] | 1032 | [[package]] |
863 | name = "getrandom" | 1033 | name = "getrandom" |
864 | version = "0.2.14" | 1034 | version = "0.2.16" |
865 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1035 | source = "registry+https://github.com/rust-lang/crates.io-index" |
866 | checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" | 1036 | checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" |
867 | dependencies = [ | 1037 | dependencies = [ |
868 | "cfg-if", | 1038 | "cfg-if", |
869 | "libc", | 1039 | "libc", |
870 | "wasi", | 1040 | "wasi 0.11.1+wasi-snapshot-preview1", |
1041 | ] | ||
1042 | |||
1043 | [[package]] | ||
1044 | name = "getrandom" | ||
1045 | version = "0.3.3" | ||
1046 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1047 | checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" | ||
1048 | dependencies = [ | ||
1049 | "cfg-if", | ||
1050 | "libc", | ||
1051 | "r-efi", | ||
1052 | "wasi 0.14.3+wasi-0.2.4", | ||
871 | ] | 1053 | ] |
872 | 1054 | ||
873 | [[package]] | 1055 | [[package]] |
874 | name = "gimli" | 1056 | name = "gimli" |
875 | version = "0.28.1" | 1057 | version = "0.31.1" |
876 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1058 | source = "registry+https://github.com/rust-lang/crates.io-index" |
877 | checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" | 1059 | checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" |
878 | 1060 | ||
879 | [[package]] | 1061 | [[package]] |
880 | name = "gitolfs3-authenticate" | 1062 | name = "gitolfs3-authenticate" |
@@ -903,7 +1085,7 @@ dependencies = [ | |||
903 | "aws-config", | 1085 | "aws-config", |
904 | "aws-sdk-s3", | 1086 | "aws-sdk-s3", |
905 | "axum", | 1087 | "axum", |
906 | "base64", | 1088 | "base64 0.22.1", |
907 | "chrono", | 1089 | "chrono", |
908 | "gitolfs3-common", | 1090 | "gitolfs3-common", |
909 | "mime", | 1091 | "mime", |
@@ -920,21 +1102,27 @@ name = "gitolfs3-shell" | |||
920 | version = "0.1.0" | 1102 | version = "0.1.0" |
921 | 1103 | ||
922 | [[package]] | 1104 | [[package]] |
1105 | name = "glob" | ||
1106 | version = "0.3.3" | ||
1107 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1108 | checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" | ||
1109 | |||
1110 | [[package]] | ||
923 | name = "group" | 1111 | name = "group" |
924 | version = "0.12.1" | 1112 | version = "0.12.1" |
925 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1113 | source = "registry+https://github.com/rust-lang/crates.io-index" |
926 | checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" | 1114 | checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" |
927 | dependencies = [ | 1115 | dependencies = [ |
928 | "ff", | 1116 | "ff", |
929 | "rand_core", | 1117 | "rand_core 0.6.4", |
930 | "subtle", | 1118 | "subtle", |
931 | ] | 1119 | ] |
932 | 1120 | ||
933 | [[package]] | 1121 | [[package]] |
934 | name = "h2" | 1122 | name = "h2" |
935 | version = "0.3.26" | 1123 | version = "0.3.27" |
936 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1124 | source = "registry+https://github.com/rust-lang/crates.io-index" |
937 | checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" | 1125 | checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" |
938 | dependencies = [ | 1126 | dependencies = [ |
939 | "bytes", | 1127 | "bytes", |
940 | "fnv", | 1128 | "fnv", |
@@ -950,20 +1138,34 @@ dependencies = [ | |||
950 | ] | 1138 | ] |
951 | 1139 | ||
952 | [[package]] | 1140 | [[package]] |
953 | name = "hashbrown" | 1141 | name = "h2" |
954 | version = "0.14.5" | 1142 | version = "0.4.12" |
955 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1143 | source = "registry+https://github.com/rust-lang/crates.io-index" |
956 | checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" | 1144 | checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" |
957 | dependencies = [ | 1145 | dependencies = [ |
958 | "ahash", | 1146 | "atomic-waker", |
959 | "allocator-api2", | 1147 | "bytes", |
1148 | "fnv", | ||
1149 | "futures-core", | ||
1150 | "futures-sink", | ||
1151 | "http 1.3.1", | ||
1152 | "indexmap", | ||
1153 | "slab", | ||
1154 | "tokio", | ||
1155 | "tokio-util", | ||
1156 | "tracing", | ||
960 | ] | 1157 | ] |
961 | 1158 | ||
962 | [[package]] | 1159 | [[package]] |
963 | name = "hermit-abi" | 1160 | name = "hashbrown" |
964 | version = "0.3.9" | 1161 | version = "0.15.5" |
965 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1162 | source = "registry+https://github.com/rust-lang/crates.io-index" |
966 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" | 1163 | checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" |
1164 | dependencies = [ | ||
1165 | "allocator-api2", | ||
1166 | "equivalent", | ||
1167 | "foldhash", | ||
1168 | ] | ||
967 | 1169 | ||
968 | [[package]] | 1170 | [[package]] |
969 | name = "hex" | 1171 | name = "hex" |
@@ -982,9 +1184,18 @@ dependencies = [ | |||
982 | 1184 | ||
983 | [[package]] | 1185 | [[package]] |
984 | name = "hmac-sha256" | 1186 | name = "hmac-sha256" |
985 | version = "1.1.7" | 1187 | version = "1.1.12" |
986 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1188 | source = "registry+https://github.com/rust-lang/crates.io-index" |
987 | checksum = "3688e69b38018fec1557254f64c8dc2cc8ec502890182f395dbb0aa997aa5735" | 1189 | checksum = "ad6880c8d4a9ebf39c6e8b77007ce223f646a4d21ce29d99f70cb16420545425" |
1190 | |||
1191 | [[package]] | ||
1192 | name = "home" | ||
1193 | version = "0.5.11" | ||
1194 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1195 | checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" | ||
1196 | dependencies = [ | ||
1197 | "windows-sys 0.59.0", | ||
1198 | ] | ||
988 | 1199 | ||
989 | [[package]] | 1200 | [[package]] |
990 | name = "http" | 1201 | name = "http" |
@@ -999,9 +1210,9 @@ dependencies = [ | |||
999 | 1210 | ||
1000 | [[package]] | 1211 | [[package]] |
1001 | name = "http" | 1212 | name = "http" |
1002 | version = "1.1.0" | 1213 | version = "1.3.1" |
1003 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1214 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1004 | checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" | 1215 | checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" |
1005 | dependencies = [ | 1216 | dependencies = [ |
1006 | "bytes", | 1217 | "bytes", |
1007 | "fnv", | 1218 | "fnv", |
@@ -1021,32 +1232,32 @@ dependencies = [ | |||
1021 | 1232 | ||
1022 | [[package]] | 1233 | [[package]] |
1023 | name = "http-body" | 1234 | name = "http-body" |
1024 | version = "1.0.0" | 1235 | version = "1.0.1" |
1025 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1236 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1026 | checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" | 1237 | checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" |
1027 | dependencies = [ | 1238 | dependencies = [ |
1028 | "bytes", | 1239 | "bytes", |
1029 | "http 1.1.0", | 1240 | "http 1.3.1", |
1030 | ] | 1241 | ] |
1031 | 1242 | ||
1032 | [[package]] | 1243 | [[package]] |
1033 | name = "http-body-util" | 1244 | name = "http-body-util" |
1034 | version = "0.1.1" | 1245 | version = "0.1.3" |
1035 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1246 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1036 | checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" | 1247 | checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" |
1037 | dependencies = [ | 1248 | dependencies = [ |
1038 | "bytes", | 1249 | "bytes", |
1039 | "futures-core", | 1250 | "futures-core", |
1040 | "http 1.1.0", | 1251 | "http 1.3.1", |
1041 | "http-body 1.0.0", | 1252 | "http-body 1.0.1", |
1042 | "pin-project-lite", | 1253 | "pin-project-lite", |
1043 | ] | 1254 | ] |
1044 | 1255 | ||
1045 | [[package]] | 1256 | [[package]] |
1046 | name = "httparse" | 1257 | name = "httparse" |
1047 | version = "1.8.0" | 1258 | version = "1.10.1" |
1048 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1259 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1049 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" | 1260 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" |
1050 | 1261 | ||
1051 | [[package]] | 1262 | [[package]] |
1052 | name = "httpdate" | 1263 | name = "httpdate" |
@@ -1056,22 +1267,22 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" | |||
1056 | 1267 | ||
1057 | [[package]] | 1268 | [[package]] |
1058 | name = "hyper" | 1269 | name = "hyper" |
1059 | version = "0.14.28" | 1270 | version = "0.14.32" |
1060 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1271 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1061 | checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" | 1272 | checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" |
1062 | dependencies = [ | 1273 | dependencies = [ |
1063 | "bytes", | 1274 | "bytes", |
1064 | "futures-channel", | 1275 | "futures-channel", |
1065 | "futures-core", | 1276 | "futures-core", |
1066 | "futures-util", | 1277 | "futures-util", |
1067 | "h2", | 1278 | "h2 0.3.27", |
1068 | "http 0.2.12", | 1279 | "http 0.2.12", |
1069 | "http-body 0.4.6", | 1280 | "http-body 0.4.6", |
1070 | "httparse", | 1281 | "httparse", |
1071 | "httpdate", | 1282 | "httpdate", |
1072 | "itoa", | 1283 | "itoa", |
1073 | "pin-project-lite", | 1284 | "pin-project-lite", |
1074 | "socket2", | 1285 | "socket2 0.5.10", |
1075 | "tokio", | 1286 | "tokio", |
1076 | "tower-service", | 1287 | "tower-service", |
1077 | "tracing", | 1288 | "tracing", |
@@ -1080,21 +1291,25 @@ dependencies = [ | |||
1080 | 1291 | ||
1081 | [[package]] | 1292 | [[package]] |
1082 | name = "hyper" | 1293 | name = "hyper" |
1083 | version = "1.3.1" | 1294 | version = "1.7.0" |
1084 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1295 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1085 | checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" | 1296 | checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" |
1086 | dependencies = [ | 1297 | dependencies = [ |
1298 | "atomic-waker", | ||
1087 | "bytes", | 1299 | "bytes", |
1088 | "futures-channel", | 1300 | "futures-channel", |
1089 | "futures-util", | 1301 | "futures-core", |
1090 | "http 1.1.0", | 1302 | "h2 0.4.12", |
1091 | "http-body 1.0.0", | 1303 | "http 1.3.1", |
1304 | "http-body 1.0.1", | ||
1092 | "httparse", | 1305 | "httparse", |
1093 | "httpdate", | 1306 | "httpdate", |
1094 | "itoa", | 1307 | "itoa", |
1095 | "pin-project-lite", | 1308 | "pin-project-lite", |
1309 | "pin-utils", | ||
1096 | "smallvec", | 1310 | "smallvec", |
1097 | "tokio", | 1311 | "tokio", |
1312 | "want", | ||
1098 | ] | 1313 | ] |
1099 | 1314 | ||
1100 | [[package]] | 1315 | [[package]] |
@@ -1105,40 +1320,66 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" | |||
1105 | dependencies = [ | 1320 | dependencies = [ |
1106 | "futures-util", | 1321 | "futures-util", |
1107 | "http 0.2.12", | 1322 | "http 0.2.12", |
1108 | "hyper 0.14.28", | 1323 | "hyper 0.14.32", |
1109 | "log", | 1324 | "log", |
1110 | "rustls", | 1325 | "rustls 0.21.12", |
1111 | "rustls-native-certs", | 1326 | "rustls-native-certs 0.6.3", |
1327 | "tokio", | ||
1328 | "tokio-rustls 0.24.1", | ||
1329 | ] | ||
1330 | |||
1331 | [[package]] | ||
1332 | name = "hyper-rustls" | ||
1333 | version = "0.27.7" | ||
1334 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1335 | checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" | ||
1336 | dependencies = [ | ||
1337 | "http 1.3.1", | ||
1338 | "hyper 1.7.0", | ||
1339 | "hyper-util", | ||
1340 | "rustls 0.23.31", | ||
1341 | "rustls-native-certs 0.8.1", | ||
1342 | "rustls-pki-types", | ||
1112 | "tokio", | 1343 | "tokio", |
1113 | "tokio-rustls", | 1344 | "tokio-rustls 0.26.2", |
1345 | "tower-service", | ||
1114 | ] | 1346 | ] |
1115 | 1347 | ||
1116 | [[package]] | 1348 | [[package]] |
1117 | name = "hyper-util" | 1349 | name = "hyper-util" |
1118 | version = "0.1.3" | 1350 | version = "0.1.16" |
1119 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1351 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1120 | checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" | 1352 | checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" |
1121 | dependencies = [ | 1353 | dependencies = [ |
1354 | "base64 0.22.1", | ||
1122 | "bytes", | 1355 | "bytes", |
1356 | "futures-channel", | ||
1357 | "futures-core", | ||
1123 | "futures-util", | 1358 | "futures-util", |
1124 | "http 1.1.0", | 1359 | "http 1.3.1", |
1125 | "http-body 1.0.0", | 1360 | "http-body 1.0.1", |
1126 | "hyper 1.3.1", | 1361 | "hyper 1.7.0", |
1362 | "ipnet", | ||
1363 | "libc", | ||
1364 | "percent-encoding", | ||
1127 | "pin-project-lite", | 1365 | "pin-project-lite", |
1128 | "socket2", | 1366 | "socket2 0.6.0", |
1129 | "tokio", | 1367 | "tokio", |
1368 | "tower-service", | ||
1369 | "tracing", | ||
1130 | ] | 1370 | ] |
1131 | 1371 | ||
1132 | [[package]] | 1372 | [[package]] |
1133 | name = "iana-time-zone" | 1373 | name = "iana-time-zone" |
1134 | version = "0.1.60" | 1374 | version = "0.1.63" |
1135 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1375 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1136 | checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" | 1376 | checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" |
1137 | dependencies = [ | 1377 | dependencies = [ |
1138 | "android_system_properties", | 1378 | "android_system_properties", |
1139 | "core-foundation-sys", | 1379 | "core-foundation-sys", |
1140 | "iana-time-zone-haiku", | 1380 | "iana-time-zone-haiku", |
1141 | "js-sys", | 1381 | "js-sys", |
1382 | "log", | ||
1142 | "wasm-bindgen", | 1383 | "wasm-bindgen", |
1143 | "windows-core", | 1384 | "windows-core", |
1144 | ] | 1385 | ] |
@@ -1153,57 +1394,219 @@ dependencies = [ | |||
1153 | ] | 1394 | ] |
1154 | 1395 | ||
1155 | [[package]] | 1396 | [[package]] |
1397 | name = "icu_collections" | ||
1398 | version = "2.0.0" | ||
1399 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1400 | checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" | ||
1401 | dependencies = [ | ||
1402 | "displaydoc", | ||
1403 | "potential_utf", | ||
1404 | "yoke", | ||
1405 | "zerofrom", | ||
1406 | "zerovec", | ||
1407 | ] | ||
1408 | |||
1409 | [[package]] | ||
1410 | name = "icu_locale_core" | ||
1411 | version = "2.0.0" | ||
1412 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1413 | checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" | ||
1414 | dependencies = [ | ||
1415 | "displaydoc", | ||
1416 | "litemap", | ||
1417 | "tinystr", | ||
1418 | "writeable", | ||
1419 | "zerovec", | ||
1420 | ] | ||
1421 | |||
1422 | [[package]] | ||
1423 | name = "icu_normalizer" | ||
1424 | version = "2.0.0" | ||
1425 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1426 | checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" | ||
1427 | dependencies = [ | ||
1428 | "displaydoc", | ||
1429 | "icu_collections", | ||
1430 | "icu_normalizer_data", | ||
1431 | "icu_properties", | ||
1432 | "icu_provider", | ||
1433 | "smallvec", | ||
1434 | "zerovec", | ||
1435 | ] | ||
1436 | |||
1437 | [[package]] | ||
1438 | name = "icu_normalizer_data" | ||
1439 | version = "2.0.0" | ||
1440 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1441 | checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" | ||
1442 | |||
1443 | [[package]] | ||
1444 | name = "icu_properties" | ||
1445 | version = "2.0.1" | ||
1446 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1447 | checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" | ||
1448 | dependencies = [ | ||
1449 | "displaydoc", | ||
1450 | "icu_collections", | ||
1451 | "icu_locale_core", | ||
1452 | "icu_properties_data", | ||
1453 | "icu_provider", | ||
1454 | "potential_utf", | ||
1455 | "zerotrie", | ||
1456 | "zerovec", | ||
1457 | ] | ||
1458 | |||
1459 | [[package]] | ||
1460 | name = "icu_properties_data" | ||
1461 | version = "2.0.1" | ||
1462 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1463 | checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" | ||
1464 | |||
1465 | [[package]] | ||
1466 | name = "icu_provider" | ||
1467 | version = "2.0.0" | ||
1468 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1469 | checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" | ||
1470 | dependencies = [ | ||
1471 | "displaydoc", | ||
1472 | "icu_locale_core", | ||
1473 | "stable_deref_trait", | ||
1474 | "tinystr", | ||
1475 | "writeable", | ||
1476 | "yoke", | ||
1477 | "zerofrom", | ||
1478 | "zerotrie", | ||
1479 | "zerovec", | ||
1480 | ] | ||
1481 | |||
1482 | [[package]] | ||
1156 | name = "idna" | 1483 | name = "idna" |
1157 | version = "0.5.0" | 1484 | version = "1.1.0" |
1485 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1486 | checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" | ||
1487 | dependencies = [ | ||
1488 | "idna_adapter", | ||
1489 | "smallvec", | ||
1490 | "utf8_iter", | ||
1491 | ] | ||
1492 | |||
1493 | [[package]] | ||
1494 | name = "idna_adapter" | ||
1495 | version = "1.2.1" | ||
1158 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1496 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1159 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" | 1497 | checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" |
1160 | dependencies = [ | 1498 | dependencies = [ |
1161 | "unicode-bidi", | 1499 | "icu_normalizer", |
1162 | "unicode-normalization", | 1500 | "icu_properties", |
1163 | ] | 1501 | ] |
1164 | 1502 | ||
1165 | [[package]] | 1503 | [[package]] |
1166 | name = "indexmap" | 1504 | name = "indexmap" |
1167 | version = "2.2.6" | 1505 | version = "2.11.0" |
1168 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1506 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1169 | checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" | 1507 | checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9" |
1170 | dependencies = [ | 1508 | dependencies = [ |
1171 | "equivalent", | 1509 | "equivalent", |
1172 | "hashbrown", | 1510 | "hashbrown", |
1173 | ] | 1511 | ] |
1174 | 1512 | ||
1175 | [[package]] | 1513 | [[package]] |
1514 | name = "io-uring" | ||
1515 | version = "0.7.10" | ||
1516 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1517 | checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" | ||
1518 | dependencies = [ | ||
1519 | "bitflags", | ||
1520 | "cfg-if", | ||
1521 | "libc", | ||
1522 | ] | ||
1523 | |||
1524 | [[package]] | ||
1525 | name = "ipnet" | ||
1526 | version = "2.11.0" | ||
1527 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1528 | checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" | ||
1529 | |||
1530 | [[package]] | ||
1531 | name = "itertools" | ||
1532 | version = "0.12.1" | ||
1533 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1534 | checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" | ||
1535 | dependencies = [ | ||
1536 | "either", | ||
1537 | ] | ||
1538 | |||
1539 | [[package]] | ||
1176 | name = "itoa" | 1540 | name = "itoa" |
1177 | version = "1.0.11" | 1541 | version = "1.0.15" |
1178 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1542 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1179 | checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" | 1543 | checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" |
1544 | |||
1545 | [[package]] | ||
1546 | name = "jobserver" | ||
1547 | version = "0.1.34" | ||
1548 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1549 | checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" | ||
1550 | dependencies = [ | ||
1551 | "getrandom 0.3.3", | ||
1552 | "libc", | ||
1553 | ] | ||
1180 | 1554 | ||
1181 | [[package]] | 1555 | [[package]] |
1182 | name = "js-sys" | 1556 | name = "js-sys" |
1183 | version = "0.3.69" | 1557 | version = "0.3.77" |
1184 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1558 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1185 | checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" | 1559 | checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" |
1186 | dependencies = [ | 1560 | dependencies = [ |
1561 | "once_cell", | ||
1187 | "wasm-bindgen", | 1562 | "wasm-bindgen", |
1188 | ] | 1563 | ] |
1189 | 1564 | ||
1190 | [[package]] | 1565 | [[package]] |
1191 | name = "lazy_static" | 1566 | name = "lazy_static" |
1192 | version = "1.4.0" | 1567 | version = "1.5.0" |
1568 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1569 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" | ||
1570 | |||
1571 | [[package]] | ||
1572 | name = "lazycell" | ||
1573 | version = "1.3.0" | ||
1193 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1574 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1194 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | 1575 | checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" |
1195 | 1576 | ||
1196 | [[package]] | 1577 | [[package]] |
1197 | name = "libc" | 1578 | name = "libc" |
1198 | version = "0.2.153" | 1579 | version = "0.2.175" |
1580 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1581 | checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" | ||
1582 | |||
1583 | [[package]] | ||
1584 | name = "libloading" | ||
1585 | version = "0.8.8" | ||
1586 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1587 | checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" | ||
1588 | dependencies = [ | ||
1589 | "cfg-if", | ||
1590 | "windows-targets 0.53.3", | ||
1591 | ] | ||
1592 | |||
1593 | [[package]] | ||
1594 | name = "linux-raw-sys" | ||
1595 | version = "0.4.15" | ||
1199 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1596 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1200 | checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" | 1597 | checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" |
1598 | |||
1599 | [[package]] | ||
1600 | name = "litemap" | ||
1601 | version = "0.8.0" | ||
1602 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1603 | checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" | ||
1201 | 1604 | ||
1202 | [[package]] | 1605 | [[package]] |
1203 | name = "lock_api" | 1606 | name = "lock_api" |
1204 | version = "0.4.12" | 1607 | version = "0.4.13" |
1205 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1608 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1206 | checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" | 1609 | checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" |
1207 | dependencies = [ | 1610 | dependencies = [ |
1208 | "autocfg", | 1611 | "autocfg", |
1209 | "scopeguard", | 1612 | "scopeguard", |
@@ -1211,33 +1614,33 @@ dependencies = [ | |||
1211 | 1614 | ||
1212 | [[package]] | 1615 | [[package]] |
1213 | name = "log" | 1616 | name = "log" |
1214 | version = "0.4.21" | 1617 | version = "0.4.27" |
1215 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1618 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1216 | checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" | 1619 | checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" |
1217 | 1620 | ||
1218 | [[package]] | 1621 | [[package]] |
1219 | name = "lru" | 1622 | name = "lru" |
1220 | version = "0.12.3" | 1623 | version = "0.12.5" |
1221 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1624 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1222 | checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" | 1625 | checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" |
1223 | dependencies = [ | 1626 | dependencies = [ |
1224 | "hashbrown", | 1627 | "hashbrown", |
1225 | ] | 1628 | ] |
1226 | 1629 | ||
1227 | [[package]] | 1630 | [[package]] |
1228 | name = "matchers" | 1631 | name = "matchers" |
1229 | version = "0.1.0" | 1632 | version = "0.2.0" |
1230 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1633 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1231 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" | 1634 | checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" |
1232 | dependencies = [ | 1635 | dependencies = [ |
1233 | "regex-automata 0.1.10", | 1636 | "regex-automata", |
1234 | ] | 1637 | ] |
1235 | 1638 | ||
1236 | [[package]] | 1639 | [[package]] |
1237 | name = "matchit" | 1640 | name = "matchit" |
1238 | version = "0.7.3" | 1641 | version = "0.8.4" |
1239 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1642 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1240 | checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" | 1643 | checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" |
1241 | 1644 | ||
1242 | [[package]] | 1645 | [[package]] |
1243 | name = "md-5" | 1646 | name = "md-5" |
@@ -1251,9 +1654,9 @@ dependencies = [ | |||
1251 | 1654 | ||
1252 | [[package]] | 1655 | [[package]] |
1253 | name = "memchr" | 1656 | name = "memchr" |
1254 | version = "2.7.2" | 1657 | version = "2.7.5" |
1255 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1658 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1256 | checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" | 1659 | checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" |
1257 | 1660 | ||
1258 | [[package]] | 1661 | [[package]] |
1259 | name = "mime" | 1662 | name = "mime" |
@@ -1262,33 +1665,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1262 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" | 1665 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" |
1263 | 1666 | ||
1264 | [[package]] | 1667 | [[package]] |
1668 | name = "minimal-lexical" | ||
1669 | version = "0.2.1" | ||
1670 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1671 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" | ||
1672 | |||
1673 | [[package]] | ||
1265 | name = "miniz_oxide" | 1674 | name = "miniz_oxide" |
1266 | version = "0.7.2" | 1675 | version = "0.8.9" |
1267 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1676 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1268 | checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" | 1677 | checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" |
1269 | dependencies = [ | 1678 | dependencies = [ |
1270 | "adler", | 1679 | "adler2", |
1271 | ] | 1680 | ] |
1272 | 1681 | ||
1273 | [[package]] | 1682 | [[package]] |
1274 | name = "mio" | 1683 | name = "mio" |
1275 | version = "0.8.11" | 1684 | version = "1.0.4" |
1276 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1685 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1277 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" | 1686 | checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" |
1278 | dependencies = [ | 1687 | dependencies = [ |
1279 | "libc", | 1688 | "libc", |
1280 | "wasi", | 1689 | "wasi 0.11.1+wasi-snapshot-preview1", |
1281 | "windows-sys 0.48.0", | 1690 | "windows-sys 0.59.0", |
1691 | ] | ||
1692 | |||
1693 | [[package]] | ||
1694 | name = "nom" | ||
1695 | version = "7.1.3" | ||
1696 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1697 | checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" | ||
1698 | dependencies = [ | ||
1699 | "memchr", | ||
1700 | "minimal-lexical", | ||
1282 | ] | 1701 | ] |
1283 | 1702 | ||
1284 | [[package]] | 1703 | [[package]] |
1285 | name = "nu-ansi-term" | 1704 | name = "nu-ansi-term" |
1286 | version = "0.46.0" | 1705 | version = "0.50.1" |
1287 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1706 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1288 | checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" | 1707 | checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" |
1289 | dependencies = [ | 1708 | dependencies = [ |
1290 | "overload", | 1709 | "windows-sys 0.52.0", |
1291 | "winapi", | ||
1292 | ] | 1710 | ] |
1293 | 1711 | ||
1294 | [[package]] | 1712 | [[package]] |
@@ -1308,55 +1726,39 @@ dependencies = [ | |||
1308 | 1726 | ||
1309 | [[package]] | 1727 | [[package]] |
1310 | name = "num-traits" | 1728 | name = "num-traits" |
1311 | version = "0.2.18" | 1729 | version = "0.2.19" |
1312 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1730 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1313 | checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" | 1731 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" |
1314 | dependencies = [ | 1732 | dependencies = [ |
1315 | "autocfg", | 1733 | "autocfg", |
1316 | ] | 1734 | ] |
1317 | 1735 | ||
1318 | [[package]] | 1736 | [[package]] |
1319 | name = "num_cpus" | ||
1320 | version = "1.16.0" | ||
1321 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1322 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" | ||
1323 | dependencies = [ | ||
1324 | "hermit-abi", | ||
1325 | "libc", | ||
1326 | ] | ||
1327 | |||
1328 | [[package]] | ||
1329 | name = "object" | 1737 | name = "object" |
1330 | version = "0.32.2" | 1738 | version = "0.36.7" |
1331 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1739 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1332 | checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" | 1740 | checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" |
1333 | dependencies = [ | 1741 | dependencies = [ |
1334 | "memchr", | 1742 | "memchr", |
1335 | ] | 1743 | ] |
1336 | 1744 | ||
1337 | [[package]] | 1745 | [[package]] |
1338 | name = "once_cell" | 1746 | name = "once_cell" |
1339 | version = "1.19.0" | 1747 | version = "1.21.3" |
1340 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1748 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1341 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" | 1749 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" |
1342 | 1750 | ||
1343 | [[package]] | 1751 | [[package]] |
1344 | name = "openssl-probe" | 1752 | name = "openssl-probe" |
1345 | version = "0.1.5" | 1753 | version = "0.1.6" |
1346 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1754 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1347 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" | 1755 | checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" |
1348 | 1756 | ||
1349 | [[package]] | 1757 | [[package]] |
1350 | name = "outref" | 1758 | name = "outref" |
1351 | version = "0.5.1" | 1759 | version = "0.5.2" |
1352 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1760 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1353 | checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" | 1761 | checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e" |
1354 | |||
1355 | [[package]] | ||
1356 | name = "overload" | ||
1357 | version = "0.1.1" | ||
1358 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1359 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" | ||
1360 | 1762 | ||
1361 | [[package]] | 1763 | [[package]] |
1362 | name = "p256" | 1764 | name = "p256" |
@@ -1371,9 +1773,9 @@ dependencies = [ | |||
1371 | 1773 | ||
1372 | [[package]] | 1774 | [[package]] |
1373 | name = "parking_lot" | 1775 | name = "parking_lot" |
1374 | version = "0.12.2" | 1776 | version = "0.12.4" |
1375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1777 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1376 | checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" | 1778 | checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" |
1377 | dependencies = [ | 1779 | dependencies = [ |
1378 | "lock_api", | 1780 | "lock_api", |
1379 | "parking_lot_core", | 1781 | "parking_lot_core", |
@@ -1381,48 +1783,28 @@ dependencies = [ | |||
1381 | 1783 | ||
1382 | [[package]] | 1784 | [[package]] |
1383 | name = "parking_lot_core" | 1785 | name = "parking_lot_core" |
1384 | version = "0.9.10" | 1786 | version = "0.9.11" |
1385 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1787 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1386 | checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" | 1788 | checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" |
1387 | dependencies = [ | 1789 | dependencies = [ |
1388 | "cfg-if", | 1790 | "cfg-if", |
1389 | "libc", | 1791 | "libc", |
1390 | "redox_syscall", | 1792 | "redox_syscall", |
1391 | "smallvec", | 1793 | "smallvec", |
1392 | "windows-targets 0.52.5", | 1794 | "windows-targets 0.52.6", |
1393 | ] | 1795 | ] |
1394 | 1796 | ||
1395 | [[package]] | 1797 | [[package]] |
1396 | name = "percent-encoding" | 1798 | name = "percent-encoding" |
1397 | version = "2.3.1" | 1799 | version = "2.3.2" |
1398 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1399 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" | ||
1400 | |||
1401 | [[package]] | ||
1402 | name = "pin-project" | ||
1403 | version = "1.1.5" | ||
1404 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1405 | checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" | ||
1406 | dependencies = [ | ||
1407 | "pin-project-internal", | ||
1408 | ] | ||
1409 | |||
1410 | [[package]] | ||
1411 | name = "pin-project-internal" | ||
1412 | version = "1.1.5" | ||
1413 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1800 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1414 | checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" | 1801 | checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" |
1415 | dependencies = [ | ||
1416 | "proc-macro2", | ||
1417 | "quote", | ||
1418 | "syn", | ||
1419 | ] | ||
1420 | 1802 | ||
1421 | [[package]] | 1803 | [[package]] |
1422 | name = "pin-project-lite" | 1804 | name = "pin-project-lite" |
1423 | version = "0.2.14" | 1805 | version = "0.2.16" |
1424 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1806 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1425 | checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" | 1807 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" |
1426 | 1808 | ||
1427 | [[package]] | 1809 | [[package]] |
1428 | name = "pin-utils" | 1810 | name = "pin-utils" |
@@ -1441,96 +1823,144 @@ dependencies = [ | |||
1441 | ] | 1823 | ] |
1442 | 1824 | ||
1443 | [[package]] | 1825 | [[package]] |
1826 | name = "potential_utf" | ||
1827 | version = "0.1.3" | ||
1828 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1829 | checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" | ||
1830 | dependencies = [ | ||
1831 | "zerovec", | ||
1832 | ] | ||
1833 | |||
1834 | [[package]] | ||
1444 | name = "powerfmt" | 1835 | name = "powerfmt" |
1445 | version = "0.2.0" | 1836 | version = "0.2.0" |
1446 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1837 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1447 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" | 1838 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" |
1448 | 1839 | ||
1449 | [[package]] | 1840 | [[package]] |
1841 | name = "ppv-lite86" | ||
1842 | version = "0.2.21" | ||
1843 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1844 | checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" | ||
1845 | dependencies = [ | ||
1846 | "zerocopy", | ||
1847 | ] | ||
1848 | |||
1849 | [[package]] | ||
1850 | name = "prettyplease" | ||
1851 | version = "0.2.37" | ||
1852 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1853 | checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" | ||
1854 | dependencies = [ | ||
1855 | "proc-macro2", | ||
1856 | "syn", | ||
1857 | ] | ||
1858 | |||
1859 | [[package]] | ||
1450 | name = "proc-macro2" | 1860 | name = "proc-macro2" |
1451 | version = "1.0.81" | 1861 | version = "1.0.101" |
1452 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1862 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1453 | checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" | 1863 | checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" |
1454 | dependencies = [ | 1864 | dependencies = [ |
1455 | "unicode-ident", | 1865 | "unicode-ident", |
1456 | ] | 1866 | ] |
1457 | 1867 | ||
1458 | [[package]] | 1868 | [[package]] |
1459 | name = "quote" | 1869 | name = "quote" |
1460 | version = "1.0.36" | 1870 | version = "1.0.40" |
1461 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1871 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1462 | checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" | 1872 | checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" |
1463 | dependencies = [ | 1873 | dependencies = [ |
1464 | "proc-macro2", | 1874 | "proc-macro2", |
1465 | ] | 1875 | ] |
1466 | 1876 | ||
1467 | [[package]] | 1877 | [[package]] |
1878 | name = "r-efi" | ||
1879 | version = "5.3.0" | ||
1880 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1881 | checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" | ||
1882 | |||
1883 | [[package]] | ||
1884 | name = "rand" | ||
1885 | version = "0.9.2" | ||
1886 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1887 | checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" | ||
1888 | dependencies = [ | ||
1889 | "rand_chacha", | ||
1890 | "rand_core 0.9.3", | ||
1891 | ] | ||
1892 | |||
1893 | [[package]] | ||
1894 | name = "rand_chacha" | ||
1895 | version = "0.9.0" | ||
1896 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1897 | checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" | ||
1898 | dependencies = [ | ||
1899 | "ppv-lite86", | ||
1900 | "rand_core 0.9.3", | ||
1901 | ] | ||
1902 | |||
1903 | [[package]] | ||
1468 | name = "rand_core" | 1904 | name = "rand_core" |
1469 | version = "0.6.4" | 1905 | version = "0.6.4" |
1470 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1906 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1471 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" | 1907 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" |
1472 | dependencies = [ | 1908 | dependencies = [ |
1473 | "getrandom", | 1909 | "getrandom 0.2.16", |
1474 | ] | 1910 | ] |
1475 | 1911 | ||
1476 | [[package]] | 1912 | [[package]] |
1477 | name = "redox_syscall" | 1913 | name = "rand_core" |
1478 | version = "0.5.1" | 1914 | version = "0.9.3" |
1479 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1915 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1480 | checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" | 1916 | checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" |
1481 | dependencies = [ | 1917 | dependencies = [ |
1482 | "bitflags 2.5.0", | 1918 | "getrandom 0.3.3", |
1483 | ] | 1919 | ] |
1484 | 1920 | ||
1485 | [[package]] | 1921 | [[package]] |
1486 | name = "regex" | 1922 | name = "redox_syscall" |
1487 | version = "1.10.4" | 1923 | version = "0.5.17" |
1488 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1924 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1489 | checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" | 1925 | checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" |
1490 | dependencies = [ | 1926 | dependencies = [ |
1491 | "aho-corasick", | 1927 | "bitflags", |
1492 | "memchr", | ||
1493 | "regex-automata 0.4.6", | ||
1494 | "regex-syntax 0.8.3", | ||
1495 | ] | 1928 | ] |
1496 | 1929 | ||
1497 | [[package]] | 1930 | [[package]] |
1498 | name = "regex-automata" | 1931 | name = "regex" |
1499 | version = "0.1.10" | 1932 | version = "1.11.2" |
1500 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1933 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1501 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" | 1934 | checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" |
1502 | dependencies = [ | 1935 | dependencies = [ |
1503 | "regex-syntax 0.6.29", | 1936 | "aho-corasick", |
1937 | "memchr", | ||
1938 | "regex-automata", | ||
1939 | "regex-syntax", | ||
1504 | ] | 1940 | ] |
1505 | 1941 | ||
1506 | [[package]] | 1942 | [[package]] |
1507 | name = "regex-automata" | 1943 | name = "regex-automata" |
1508 | version = "0.4.6" | 1944 | version = "0.4.10" |
1509 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1945 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1510 | checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" | 1946 | checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" |
1511 | dependencies = [ | 1947 | dependencies = [ |
1512 | "aho-corasick", | 1948 | "aho-corasick", |
1513 | "memchr", | 1949 | "memchr", |
1514 | "regex-syntax 0.8.3", | 1950 | "regex-syntax", |
1515 | ] | 1951 | ] |
1516 | 1952 | ||
1517 | [[package]] | 1953 | [[package]] |
1518 | name = "regex-lite" | 1954 | name = "regex-lite" |
1519 | version = "0.1.5" | 1955 | version = "0.1.7" |
1520 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1521 | checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" | ||
1522 | |||
1523 | [[package]] | ||
1524 | name = "regex-syntax" | ||
1525 | version = "0.6.29" | ||
1526 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1956 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1527 | checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" | 1957 | checksum = "943f41321c63ef1c92fd763bfe054d2668f7f225a5c29f0105903dc2fc04ba30" |
1528 | 1958 | ||
1529 | [[package]] | 1959 | [[package]] |
1530 | name = "regex-syntax" | 1960 | name = "regex-syntax" |
1531 | version = "0.8.3" | 1961 | version = "0.8.6" |
1532 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1962 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1533 | checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" | 1963 | checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" |
1534 | 1964 | ||
1535 | [[package]] | 1965 | [[package]] |
1536 | name = "rfc6979" | 1966 | name = "rfc6979" |
@@ -1545,35 +1975,53 @@ dependencies = [ | |||
1545 | 1975 | ||
1546 | [[package]] | 1976 | [[package]] |
1547 | name = "ring" | 1977 | name = "ring" |
1548 | version = "0.17.8" | 1978 | version = "0.17.14" |
1549 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1979 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1550 | checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" | 1980 | checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" |
1551 | dependencies = [ | 1981 | dependencies = [ |
1552 | "cc", | 1982 | "cc", |
1553 | "cfg-if", | 1983 | "cfg-if", |
1554 | "getrandom", | 1984 | "getrandom 0.2.16", |
1555 | "libc", | 1985 | "libc", |
1556 | "spin", | ||
1557 | "untrusted", | 1986 | "untrusted", |
1558 | "windows-sys 0.52.0", | 1987 | "windows-sys 0.52.0", |
1559 | ] | 1988 | ] |
1560 | 1989 | ||
1561 | [[package]] | 1990 | [[package]] |
1562 | name = "rustc-demangle" | 1991 | name = "rustc-demangle" |
1563 | version = "0.1.23" | 1992 | version = "0.1.26" |
1564 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1993 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1565 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" | 1994 | checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" |
1995 | |||
1996 | [[package]] | ||
1997 | name = "rustc-hash" | ||
1998 | version = "1.1.0" | ||
1999 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2000 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" | ||
1566 | 2001 | ||
1567 | [[package]] | 2002 | [[package]] |
1568 | name = "rustc_version" | 2003 | name = "rustc_version" |
1569 | version = "0.4.0" | 2004 | version = "0.4.1" |
1570 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2005 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1571 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" | 2006 | checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" |
1572 | dependencies = [ | 2007 | dependencies = [ |
1573 | "semver", | 2008 | "semver", |
1574 | ] | 2009 | ] |
1575 | 2010 | ||
1576 | [[package]] | 2011 | [[package]] |
2012 | name = "rustix" | ||
2013 | version = "0.38.44" | ||
2014 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2015 | checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" | ||
2016 | dependencies = [ | ||
2017 | "bitflags", | ||
2018 | "errno", | ||
2019 | "libc", | ||
2020 | "linux-raw-sys", | ||
2021 | "windows-sys 0.59.0", | ||
2022 | ] | ||
2023 | |||
2024 | [[package]] | ||
1577 | name = "rustls" | 2025 | name = "rustls" |
1578 | version = "0.21.12" | 2026 | version = "0.21.12" |
1579 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2027 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1581,11 +2029,25 @@ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" | |||
1581 | dependencies = [ | 2029 | dependencies = [ |
1582 | "log", | 2030 | "log", |
1583 | "ring", | 2031 | "ring", |
1584 | "rustls-webpki", | 2032 | "rustls-webpki 0.101.7", |
1585 | "sct", | 2033 | "sct", |
1586 | ] | 2034 | ] |
1587 | 2035 | ||
1588 | [[package]] | 2036 | [[package]] |
2037 | name = "rustls" | ||
2038 | version = "0.23.31" | ||
2039 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2040 | checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" | ||
2041 | dependencies = [ | ||
2042 | "aws-lc-rs", | ||
2043 | "once_cell", | ||
2044 | "rustls-pki-types", | ||
2045 | "rustls-webpki 0.103.4", | ||
2046 | "subtle", | ||
2047 | "zeroize", | ||
2048 | ] | ||
2049 | |||
2050 | [[package]] | ||
1589 | name = "rustls-native-certs" | 2051 | name = "rustls-native-certs" |
1590 | version = "0.6.3" | 2052 | version = "0.6.3" |
1591 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2053 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1594,7 +2056,19 @@ dependencies = [ | |||
1594 | "openssl-probe", | 2056 | "openssl-probe", |
1595 | "rustls-pemfile", | 2057 | "rustls-pemfile", |
1596 | "schannel", | 2058 | "schannel", |
1597 | "security-framework", | 2059 | "security-framework 2.11.1", |
2060 | ] | ||
2061 | |||
2062 | [[package]] | ||
2063 | name = "rustls-native-certs" | ||
2064 | version = "0.8.1" | ||
2065 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2066 | checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" | ||
2067 | dependencies = [ | ||
2068 | "openssl-probe", | ||
2069 | "rustls-pki-types", | ||
2070 | "schannel", | ||
2071 | "security-framework 3.3.0", | ||
1598 | ] | 2072 | ] |
1599 | 2073 | ||
1600 | [[package]] | 2074 | [[package]] |
@@ -1603,7 +2077,16 @@ version = "1.0.4" | |||
1603 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2077 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1604 | checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" | 2078 | checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" |
1605 | dependencies = [ | 2079 | dependencies = [ |
1606 | "base64", | 2080 | "base64 0.21.7", |
2081 | ] | ||
2082 | |||
2083 | [[package]] | ||
2084 | name = "rustls-pki-types" | ||
2085 | version = "1.12.0" | ||
2086 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2087 | checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" | ||
2088 | dependencies = [ | ||
2089 | "zeroize", | ||
1607 | ] | 2090 | ] |
1608 | 2091 | ||
1609 | [[package]] | 2092 | [[package]] |
@@ -1617,24 +2100,36 @@ dependencies = [ | |||
1617 | ] | 2100 | ] |
1618 | 2101 | ||
1619 | [[package]] | 2102 | [[package]] |
2103 | name = "rustls-webpki" | ||
2104 | version = "0.103.4" | ||
2105 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2106 | checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" | ||
2107 | dependencies = [ | ||
2108 | "aws-lc-rs", | ||
2109 | "ring", | ||
2110 | "rustls-pki-types", | ||
2111 | "untrusted", | ||
2112 | ] | ||
2113 | |||
2114 | [[package]] | ||
1620 | name = "rustversion" | 2115 | name = "rustversion" |
1621 | version = "1.0.15" | 2116 | version = "1.0.22" |
1622 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2117 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1623 | checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47" | 2118 | checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" |
1624 | 2119 | ||
1625 | [[package]] | 2120 | [[package]] |
1626 | name = "ryu" | 2121 | name = "ryu" |
1627 | version = "1.0.17" | 2122 | version = "1.0.20" |
1628 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2123 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1629 | checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" | 2124 | checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" |
1630 | 2125 | ||
1631 | [[package]] | 2126 | [[package]] |
1632 | name = "schannel" | 2127 | name = "schannel" |
1633 | version = "0.1.23" | 2128 | version = "0.1.27" |
1634 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2129 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1635 | checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" | 2130 | checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" |
1636 | dependencies = [ | 2131 | dependencies = [ |
1637 | "windows-sys 0.52.0", | 2132 | "windows-sys 0.59.0", |
1638 | ] | 2133 | ] |
1639 | 2134 | ||
1640 | [[package]] | 2135 | [[package]] |
@@ -1669,12 +2164,25 @@ dependencies = [ | |||
1669 | 2164 | ||
1670 | [[package]] | 2165 | [[package]] |
1671 | name = "security-framework" | 2166 | name = "security-framework" |
1672 | version = "2.10.0" | 2167 | version = "2.11.1" |
2168 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2169 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" | ||
2170 | dependencies = [ | ||
2171 | "bitflags", | ||
2172 | "core-foundation 0.9.4", | ||
2173 | "core-foundation-sys", | ||
2174 | "libc", | ||
2175 | "security-framework-sys", | ||
2176 | ] | ||
2177 | |||
2178 | [[package]] | ||
2179 | name = "security-framework" | ||
2180 | version = "3.3.0" | ||
1673 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2181 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1674 | checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" | 2182 | checksum = "80fb1d92c5028aa318b4b8bd7302a5bfcf48be96a37fc6fc790f806b0004ee0c" |
1675 | dependencies = [ | 2183 | dependencies = [ |
1676 | "bitflags 1.3.2", | 2184 | "bitflags", |
1677 | "core-foundation", | 2185 | "core-foundation 0.10.1", |
1678 | "core-foundation-sys", | 2186 | "core-foundation-sys", |
1679 | "libc", | 2187 | "libc", |
1680 | "security-framework-sys", | 2188 | "security-framework-sys", |
@@ -1682,9 +2190,9 @@ dependencies = [ | |||
1682 | 2190 | ||
1683 | [[package]] | 2191 | [[package]] |
1684 | name = "security-framework-sys" | 2192 | name = "security-framework-sys" |
1685 | version = "2.10.0" | 2193 | version = "2.14.0" |
1686 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2194 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1687 | checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" | 2195 | checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" |
1688 | dependencies = [ | 2196 | dependencies = [ |
1689 | "core-foundation-sys", | 2197 | "core-foundation-sys", |
1690 | "libc", | 2198 | "libc", |
@@ -1692,24 +2200,24 @@ dependencies = [ | |||
1692 | 2200 | ||
1693 | [[package]] | 2201 | [[package]] |
1694 | name = "semver" | 2202 | name = "semver" |
1695 | version = "1.0.22" | 2203 | version = "1.0.26" |
1696 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2204 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1697 | checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" | 2205 | checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" |
1698 | 2206 | ||
1699 | [[package]] | 2207 | [[package]] |
1700 | name = "serde" | 2208 | name = "serde" |
1701 | version = "1.0.199" | 2209 | version = "1.0.219" |
1702 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2210 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1703 | checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" | 2211 | checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" |
1704 | dependencies = [ | 2212 | dependencies = [ |
1705 | "serde_derive", | 2213 | "serde_derive", |
1706 | ] | 2214 | ] |
1707 | 2215 | ||
1708 | [[package]] | 2216 | [[package]] |
1709 | name = "serde_derive" | 2217 | name = "serde_derive" |
1710 | version = "1.0.199" | 2218 | version = "1.0.219" |
1711 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2219 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1712 | checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" | 2220 | checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" |
1713 | dependencies = [ | 2221 | dependencies = [ |
1714 | "proc-macro2", | 2222 | "proc-macro2", |
1715 | "quote", | 2223 | "quote", |
@@ -1718,20 +2226,21 @@ dependencies = [ | |||
1718 | 2226 | ||
1719 | [[package]] | 2227 | [[package]] |
1720 | name = "serde_json" | 2228 | name = "serde_json" |
1721 | version = "1.0.116" | 2229 | version = "1.0.143" |
1722 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2230 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1723 | checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" | 2231 | checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" |
1724 | dependencies = [ | 2232 | dependencies = [ |
1725 | "itoa", | 2233 | "itoa", |
2234 | "memchr", | ||
1726 | "ryu", | 2235 | "ryu", |
1727 | "serde", | 2236 | "serde", |
1728 | ] | 2237 | ] |
1729 | 2238 | ||
1730 | [[package]] | 2239 | [[package]] |
1731 | name = "serde_path_to_error" | 2240 | name = "serde_path_to_error" |
1732 | version = "0.1.16" | 2241 | version = "0.1.17" |
1733 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2242 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1734 | checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" | 2243 | checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" |
1735 | dependencies = [ | 2244 | dependencies = [ |
1736 | "itoa", | 2245 | "itoa", |
1737 | "serde", | 2246 | "serde", |
@@ -1762,9 +2271,9 @@ dependencies = [ | |||
1762 | 2271 | ||
1763 | [[package]] | 2272 | [[package]] |
1764 | name = "sha2" | 2273 | name = "sha2" |
1765 | version = "0.10.8" | 2274 | version = "0.10.9" |
1766 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2275 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1767 | checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" | 2276 | checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" |
1768 | dependencies = [ | 2277 | dependencies = [ |
1769 | "cfg-if", | 2278 | "cfg-if", |
1770 | "cpufeatures", | 2279 | "cpufeatures", |
@@ -1781,10 +2290,16 @@ dependencies = [ | |||
1781 | ] | 2290 | ] |
1782 | 2291 | ||
1783 | [[package]] | 2292 | [[package]] |
2293 | name = "shlex" | ||
2294 | version = "1.3.0" | ||
2295 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2296 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" | ||
2297 | |||
2298 | [[package]] | ||
1784 | name = "signal-hook-registry" | 2299 | name = "signal-hook-registry" |
1785 | version = "1.4.2" | 2300 | version = "1.4.6" |
1786 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2301 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1787 | checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" | 2302 | checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" |
1788 | dependencies = [ | 2303 | dependencies = [ |
1789 | "libc", | 2304 | "libc", |
1790 | ] | 2305 | ] |
@@ -1796,39 +2311,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1796 | checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" | 2311 | checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" |
1797 | dependencies = [ | 2312 | dependencies = [ |
1798 | "digest", | 2313 | "digest", |
1799 | "rand_core", | 2314 | "rand_core 0.6.4", |
1800 | ] | 2315 | ] |
1801 | 2316 | ||
1802 | [[package]] | 2317 | [[package]] |
1803 | name = "slab" | 2318 | name = "slab" |
1804 | version = "0.4.9" | 2319 | version = "0.4.11" |
1805 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2320 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1806 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" | 2321 | checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" |
1807 | dependencies = [ | ||
1808 | "autocfg", | ||
1809 | ] | ||
1810 | 2322 | ||
1811 | [[package]] | 2323 | [[package]] |
1812 | name = "smallvec" | 2324 | name = "smallvec" |
1813 | version = "1.13.2" | 2325 | version = "1.15.1" |
1814 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2326 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1815 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" | 2327 | checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" |
1816 | 2328 | ||
1817 | [[package]] | 2329 | [[package]] |
1818 | name = "socket2" | 2330 | name = "socket2" |
1819 | version = "0.5.7" | 2331 | version = "0.5.10" |
1820 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2332 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1821 | checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" | 2333 | checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" |
1822 | dependencies = [ | 2334 | dependencies = [ |
1823 | "libc", | 2335 | "libc", |
1824 | "windows-sys 0.52.0", | 2336 | "windows-sys 0.52.0", |
1825 | ] | 2337 | ] |
1826 | 2338 | ||
1827 | [[package]] | 2339 | [[package]] |
1828 | name = "spin" | 2340 | name = "socket2" |
1829 | version = "0.9.8" | 2341 | version = "0.6.0" |
1830 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2342 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1831 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" | 2343 | checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" |
2344 | dependencies = [ | ||
2345 | "libc", | ||
2346 | "windows-sys 0.59.0", | ||
2347 | ] | ||
1832 | 2348 | ||
1833 | [[package]] | 2349 | [[package]] |
1834 | name = "spki" | 2350 | name = "spki" |
@@ -1841,16 +2357,22 @@ dependencies = [ | |||
1841 | ] | 2357 | ] |
1842 | 2358 | ||
1843 | [[package]] | 2359 | [[package]] |
2360 | name = "stable_deref_trait" | ||
2361 | version = "1.2.0" | ||
2362 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2363 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" | ||
2364 | |||
2365 | [[package]] | ||
1844 | name = "subtle" | 2366 | name = "subtle" |
1845 | version = "2.5.0" | 2367 | version = "2.6.1" |
1846 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2368 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1847 | checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" | 2369 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" |
1848 | 2370 | ||
1849 | [[package]] | 2371 | [[package]] |
1850 | name = "syn" | 2372 | name = "syn" |
1851 | version = "2.0.60" | 2373 | version = "2.0.106" |
1852 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2374 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1853 | checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" | 2375 | checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" |
1854 | dependencies = [ | 2376 | dependencies = [ |
1855 | "proc-macro2", | 2377 | "proc-macro2", |
1856 | "quote", | 2378 | "quote", |
@@ -1859,31 +2381,35 @@ dependencies = [ | |||
1859 | 2381 | ||
1860 | [[package]] | 2382 | [[package]] |
1861 | name = "sync_wrapper" | 2383 | name = "sync_wrapper" |
1862 | version = "0.1.2" | 2384 | version = "1.0.2" |
1863 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2385 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1864 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" | 2386 | checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" |
1865 | 2387 | ||
1866 | [[package]] | 2388 | [[package]] |
1867 | name = "sync_wrapper" | 2389 | name = "synstructure" |
1868 | version = "1.0.1" | 2390 | version = "0.13.2" |
1869 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2391 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1870 | checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" | 2392 | checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" |
2393 | dependencies = [ | ||
2394 | "proc-macro2", | ||
2395 | "quote", | ||
2396 | "syn", | ||
2397 | ] | ||
1871 | 2398 | ||
1872 | [[package]] | 2399 | [[package]] |
1873 | name = "thread_local" | 2400 | name = "thread_local" |
1874 | version = "1.1.8" | 2401 | version = "1.1.9" |
1875 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2402 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1876 | checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" | 2403 | checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" |
1877 | dependencies = [ | 2404 | dependencies = [ |
1878 | "cfg-if", | 2405 | "cfg-if", |
1879 | "once_cell", | ||
1880 | ] | 2406 | ] |
1881 | 2407 | ||
1882 | [[package]] | 2408 | [[package]] |
1883 | name = "time" | 2409 | name = "time" |
1884 | version = "0.3.36" | 2410 | version = "0.3.42" |
1885 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2411 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1886 | checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" | 2412 | checksum = "8ca967379f9d8eb8058d86ed467d81d03e81acd45757e4ca341c24affbe8e8e3" |
1887 | dependencies = [ | 2413 | dependencies = [ |
1888 | "deranged", | 2414 | "deranged", |
1889 | "num-conv", | 2415 | "num-conv", |
@@ -1895,59 +2421,55 @@ dependencies = [ | |||
1895 | 2421 | ||
1896 | [[package]] | 2422 | [[package]] |
1897 | name = "time-core" | 2423 | name = "time-core" |
1898 | version = "0.1.2" | 2424 | version = "0.1.5" |
1899 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2425 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1900 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" | 2426 | checksum = "a9108bb380861b07264b950ded55a44a14a4adc68b9f5efd85aafc3aa4d40a68" |
1901 | 2427 | ||
1902 | [[package]] | 2428 | [[package]] |
1903 | name = "time-macros" | 2429 | name = "time-macros" |
1904 | version = "0.2.18" | 2430 | version = "0.2.23" |
1905 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2431 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1906 | checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" | 2432 | checksum = "7182799245a7264ce590b349d90338f1c1affad93d2639aed5f8f69c090b334c" |
1907 | dependencies = [ | 2433 | dependencies = [ |
1908 | "num-conv", | 2434 | "num-conv", |
1909 | "time-core", | 2435 | "time-core", |
1910 | ] | 2436 | ] |
1911 | 2437 | ||
1912 | [[package]] | 2438 | [[package]] |
1913 | name = "tinyvec" | 2439 | name = "tinystr" |
1914 | version = "1.6.0" | 2440 | version = "0.8.1" |
1915 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2441 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1916 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" | 2442 | checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" |
1917 | dependencies = [ | 2443 | dependencies = [ |
1918 | "tinyvec_macros", | 2444 | "displaydoc", |
2445 | "zerovec", | ||
1919 | ] | 2446 | ] |
1920 | 2447 | ||
1921 | [[package]] | 2448 | [[package]] |
1922 | name = "tinyvec_macros" | ||
1923 | version = "0.1.1" | ||
1924 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1925 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | ||
1926 | |||
1927 | [[package]] | ||
1928 | name = "tokio" | 2449 | name = "tokio" |
1929 | version = "1.37.0" | 2450 | version = "1.47.1" |
1930 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2451 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1931 | checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" | 2452 | checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" |
1932 | dependencies = [ | 2453 | dependencies = [ |
1933 | "backtrace", | 2454 | "backtrace", |
1934 | "bytes", | 2455 | "bytes", |
2456 | "io-uring", | ||
1935 | "libc", | 2457 | "libc", |
1936 | "mio", | 2458 | "mio", |
1937 | "num_cpus", | ||
1938 | "parking_lot", | 2459 | "parking_lot", |
1939 | "pin-project-lite", | 2460 | "pin-project-lite", |
1940 | "signal-hook-registry", | 2461 | "signal-hook-registry", |
1941 | "socket2", | 2462 | "slab", |
2463 | "socket2 0.6.0", | ||
1942 | "tokio-macros", | 2464 | "tokio-macros", |
1943 | "windows-sys 0.48.0", | 2465 | "windows-sys 0.59.0", |
1944 | ] | 2466 | ] |
1945 | 2467 | ||
1946 | [[package]] | 2468 | [[package]] |
1947 | name = "tokio-macros" | 2469 | name = "tokio-macros" |
1948 | version = "2.2.0" | 2470 | version = "2.5.0" |
1949 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2471 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1950 | checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" | 2472 | checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" |
1951 | dependencies = [ | 2473 | dependencies = [ |
1952 | "proc-macro2", | 2474 | "proc-macro2", |
1953 | "quote", | 2475 | "quote", |
@@ -1960,34 +2482,43 @@ version = "0.24.1" | |||
1960 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2482 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1961 | checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" | 2483 | checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" |
1962 | dependencies = [ | 2484 | dependencies = [ |
1963 | "rustls", | 2485 | "rustls 0.21.12", |
2486 | "tokio", | ||
2487 | ] | ||
2488 | |||
2489 | [[package]] | ||
2490 | name = "tokio-rustls" | ||
2491 | version = "0.26.2" | ||
2492 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2493 | checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" | ||
2494 | dependencies = [ | ||
2495 | "rustls 0.23.31", | ||
1964 | "tokio", | 2496 | "tokio", |
1965 | ] | 2497 | ] |
1966 | 2498 | ||
1967 | [[package]] | 2499 | [[package]] |
1968 | name = "tokio-util" | 2500 | name = "tokio-util" |
1969 | version = "0.7.10" | 2501 | version = "0.7.16" |
1970 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2502 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1971 | checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" | 2503 | checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" |
1972 | dependencies = [ | 2504 | dependencies = [ |
1973 | "bytes", | 2505 | "bytes", |
1974 | "futures-core", | 2506 | "futures-core", |
1975 | "futures-sink", | 2507 | "futures-sink", |
1976 | "pin-project-lite", | 2508 | "pin-project-lite", |
1977 | "tokio", | 2509 | "tokio", |
1978 | "tracing", | ||
1979 | ] | 2510 | ] |
1980 | 2511 | ||
1981 | [[package]] | 2512 | [[package]] |
1982 | name = "tower" | 2513 | name = "tower" |
1983 | version = "0.4.13" | 2514 | version = "0.5.2" |
1984 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2515 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1985 | checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" | 2516 | checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" |
1986 | dependencies = [ | 2517 | dependencies = [ |
1987 | "futures-core", | 2518 | "futures-core", |
1988 | "futures-util", | 2519 | "futures-util", |
1989 | "pin-project", | ||
1990 | "pin-project-lite", | 2520 | "pin-project-lite", |
2521 | "sync_wrapper", | ||
1991 | "tokio", | 2522 | "tokio", |
1992 | "tower-layer", | 2523 | "tower-layer", |
1993 | "tower-service", | 2524 | "tower-service", |
@@ -1996,21 +2527,21 @@ dependencies = [ | |||
1996 | 2527 | ||
1997 | [[package]] | 2528 | [[package]] |
1998 | name = "tower-layer" | 2529 | name = "tower-layer" |
1999 | version = "0.3.2" | 2530 | version = "0.3.3" |
2000 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2531 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2001 | checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" | 2532 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" |
2002 | 2533 | ||
2003 | [[package]] | 2534 | [[package]] |
2004 | name = "tower-service" | 2535 | name = "tower-service" |
2005 | version = "0.3.2" | 2536 | version = "0.3.3" |
2006 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2537 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2007 | checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" | 2538 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" |
2008 | 2539 | ||
2009 | [[package]] | 2540 | [[package]] |
2010 | name = "tracing" | 2541 | name = "tracing" |
2011 | version = "0.1.40" | 2542 | version = "0.1.41" |
2012 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2543 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2013 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" | 2544 | checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" |
2014 | dependencies = [ | 2545 | dependencies = [ |
2015 | "log", | 2546 | "log", |
2016 | "pin-project-lite", | 2547 | "pin-project-lite", |
@@ -2020,9 +2551,9 @@ dependencies = [ | |||
2020 | 2551 | ||
2021 | [[package]] | 2552 | [[package]] |
2022 | name = "tracing-attributes" | 2553 | name = "tracing-attributes" |
2023 | version = "0.1.27" | 2554 | version = "0.1.30" |
2024 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2555 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2025 | checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" | 2556 | checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" |
2026 | dependencies = [ | 2557 | dependencies = [ |
2027 | "proc-macro2", | 2558 | "proc-macro2", |
2028 | "quote", | 2559 | "quote", |
@@ -2031,9 +2562,9 @@ dependencies = [ | |||
2031 | 2562 | ||
2032 | [[package]] | 2563 | [[package]] |
2033 | name = "tracing-core" | 2564 | name = "tracing-core" |
2034 | version = "0.1.32" | 2565 | version = "0.1.34" |
2035 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2566 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2036 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" | 2567 | checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" |
2037 | dependencies = [ | 2568 | dependencies = [ |
2038 | "once_cell", | 2569 | "once_cell", |
2039 | "valuable", | 2570 | "valuable", |
@@ -2052,14 +2583,14 @@ dependencies = [ | |||
2052 | 2583 | ||
2053 | [[package]] | 2584 | [[package]] |
2054 | name = "tracing-subscriber" | 2585 | name = "tracing-subscriber" |
2055 | version = "0.3.18" | 2586 | version = "0.3.20" |
2056 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2587 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2057 | checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" | 2588 | checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" |
2058 | dependencies = [ | 2589 | dependencies = [ |
2059 | "matchers", | 2590 | "matchers", |
2060 | "nu-ansi-term", | 2591 | "nu-ansi-term", |
2061 | "once_cell", | 2592 | "once_cell", |
2062 | "regex", | 2593 | "regex-automata", |
2063 | "sharded-slab", | 2594 | "sharded-slab", |
2064 | "smallvec", | 2595 | "smallvec", |
2065 | "thread_local", | 2596 | "thread_local", |
@@ -2076,30 +2607,15 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" | |||
2076 | 2607 | ||
2077 | [[package]] | 2608 | [[package]] |
2078 | name = "typenum" | 2609 | name = "typenum" |
2079 | version = "1.17.0" | 2610 | version = "1.18.0" |
2080 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2081 | checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" | ||
2082 | |||
2083 | [[package]] | ||
2084 | name = "unicode-bidi" | ||
2085 | version = "0.3.15" | ||
2086 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2611 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2087 | checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" | 2612 | checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" |
2088 | 2613 | ||
2089 | [[package]] | 2614 | [[package]] |
2090 | name = "unicode-ident" | 2615 | name = "unicode-ident" |
2091 | version = "1.0.12" | 2616 | version = "1.0.18" |
2092 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2617 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2093 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" | 2618 | checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" |
2094 | |||
2095 | [[package]] | ||
2096 | name = "unicode-normalization" | ||
2097 | version = "0.1.23" | ||
2098 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2099 | checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" | ||
2100 | dependencies = [ | ||
2101 | "tinyvec", | ||
2102 | ] | ||
2103 | 2619 | ||
2104 | [[package]] | 2620 | [[package]] |
2105 | name = "untrusted" | 2621 | name = "untrusted" |
@@ -2109,13 +2625,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" | |||
2109 | 2625 | ||
2110 | [[package]] | 2626 | [[package]] |
2111 | name = "url" | 2627 | name = "url" |
2112 | version = "2.5.0" | 2628 | version = "2.5.7" |
2113 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2629 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2114 | checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" | 2630 | checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" |
2115 | dependencies = [ | 2631 | dependencies = [ |
2116 | "form_urlencoded", | 2632 | "form_urlencoded", |
2117 | "idna", | 2633 | "idna", |
2118 | "percent-encoding", | 2634 | "percent-encoding", |
2635 | "serde", | ||
2119 | ] | 2636 | ] |
2120 | 2637 | ||
2121 | [[package]] | 2638 | [[package]] |
@@ -2125,22 +2642,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2125 | checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" | 2642 | checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" |
2126 | 2643 | ||
2127 | [[package]] | 2644 | [[package]] |
2645 | name = "utf8_iter" | ||
2646 | version = "1.0.4" | ||
2647 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2648 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" | ||
2649 | |||
2650 | [[package]] | ||
2128 | name = "uuid" | 2651 | name = "uuid" |
2129 | version = "1.8.0" | 2652 | version = "1.18.0" |
2130 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2653 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2131 | checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" | 2654 | checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be" |
2655 | dependencies = [ | ||
2656 | "js-sys", | ||
2657 | "wasm-bindgen", | ||
2658 | ] | ||
2132 | 2659 | ||
2133 | [[package]] | 2660 | [[package]] |
2134 | name = "valuable" | 2661 | name = "valuable" |
2135 | version = "0.1.0" | 2662 | version = "0.1.1" |
2136 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2663 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2137 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" | 2664 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" |
2138 | 2665 | ||
2139 | [[package]] | 2666 | [[package]] |
2140 | name = "version_check" | 2667 | name = "version_check" |
2141 | version = "0.9.4" | 2668 | version = "0.9.5" |
2142 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2669 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2143 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" | 2670 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" |
2144 | 2671 | ||
2145 | [[package]] | 2672 | [[package]] |
2146 | name = "vsimd" | 2673 | name = "vsimd" |
@@ -2159,29 +2686,39 @@ dependencies = [ | |||
2159 | 2686 | ||
2160 | [[package]] | 2687 | [[package]] |
2161 | name = "wasi" | 2688 | name = "wasi" |
2162 | version = "0.11.0+wasi-snapshot-preview1" | 2689 | version = "0.11.1+wasi-snapshot-preview1" |
2690 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2691 | checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" | ||
2692 | |||
2693 | [[package]] | ||
2694 | name = "wasi" | ||
2695 | version = "0.14.3+wasi-0.2.4" | ||
2163 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2696 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2164 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" | 2697 | checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95" |
2698 | dependencies = [ | ||
2699 | "wit-bindgen", | ||
2700 | ] | ||
2165 | 2701 | ||
2166 | [[package]] | 2702 | [[package]] |
2167 | name = "wasm-bindgen" | 2703 | name = "wasm-bindgen" |
2168 | version = "0.2.92" | 2704 | version = "0.2.100" |
2169 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2705 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2170 | checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" | 2706 | checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" |
2171 | dependencies = [ | 2707 | dependencies = [ |
2172 | "cfg-if", | 2708 | "cfg-if", |
2709 | "once_cell", | ||
2710 | "rustversion", | ||
2173 | "wasm-bindgen-macro", | 2711 | "wasm-bindgen-macro", |
2174 | ] | 2712 | ] |
2175 | 2713 | ||
2176 | [[package]] | 2714 | [[package]] |
2177 | name = "wasm-bindgen-backend" | 2715 | name = "wasm-bindgen-backend" |
2178 | version = "0.2.92" | 2716 | version = "0.2.100" |
2179 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2717 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2180 | checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" | 2718 | checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" |
2181 | dependencies = [ | 2719 | dependencies = [ |
2182 | "bumpalo", | 2720 | "bumpalo", |
2183 | "log", | 2721 | "log", |
2184 | "once_cell", | ||
2185 | "proc-macro2", | 2722 | "proc-macro2", |
2186 | "quote", | 2723 | "quote", |
2187 | "syn", | 2724 | "syn", |
@@ -2190,9 +2727,9 @@ dependencies = [ | |||
2190 | 2727 | ||
2191 | [[package]] | 2728 | [[package]] |
2192 | name = "wasm-bindgen-macro" | 2729 | name = "wasm-bindgen-macro" |
2193 | version = "0.2.92" | 2730 | version = "0.2.100" |
2194 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2731 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2195 | checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" | 2732 | checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" |
2196 | dependencies = [ | 2733 | dependencies = [ |
2197 | "quote", | 2734 | "quote", |
2198 | "wasm-bindgen-macro-support", | 2735 | "wasm-bindgen-macro-support", |
@@ -2200,9 +2737,9 @@ dependencies = [ | |||
2200 | 2737 | ||
2201 | [[package]] | 2738 | [[package]] |
2202 | name = "wasm-bindgen-macro-support" | 2739 | name = "wasm-bindgen-macro-support" |
2203 | version = "0.2.92" | 2740 | version = "0.2.100" |
2204 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2741 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2205 | checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" | 2742 | checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" |
2206 | dependencies = [ | 2743 | dependencies = [ |
2207 | "proc-macro2", | 2744 | "proc-macro2", |
2208 | "quote", | 2745 | "quote", |
@@ -2213,48 +2750,82 @@ dependencies = [ | |||
2213 | 2750 | ||
2214 | [[package]] | 2751 | [[package]] |
2215 | name = "wasm-bindgen-shared" | 2752 | name = "wasm-bindgen-shared" |
2216 | version = "0.2.92" | 2753 | version = "0.2.100" |
2217 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2754 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2218 | checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" | 2755 | checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" |
2756 | dependencies = [ | ||
2757 | "unicode-ident", | ||
2758 | ] | ||
2219 | 2759 | ||
2220 | [[package]] | 2760 | [[package]] |
2221 | name = "winapi" | 2761 | name = "which" |
2222 | version = "0.3.9" | 2762 | version = "4.4.2" |
2223 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2763 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2224 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | 2764 | checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" |
2225 | dependencies = [ | 2765 | dependencies = [ |
2226 | "winapi-i686-pc-windows-gnu", | 2766 | "either", |
2227 | "winapi-x86_64-pc-windows-gnu", | 2767 | "home", |
2768 | "once_cell", | ||
2769 | "rustix", | ||
2228 | ] | 2770 | ] |
2229 | 2771 | ||
2230 | [[package]] | 2772 | [[package]] |
2231 | name = "winapi-i686-pc-windows-gnu" | 2773 | name = "windows-core" |
2232 | version = "0.4.0" | 2774 | version = "0.61.2" |
2233 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2775 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2234 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | 2776 | checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" |
2777 | dependencies = [ | ||
2778 | "windows-implement", | ||
2779 | "windows-interface", | ||
2780 | "windows-link", | ||
2781 | "windows-result", | ||
2782 | "windows-strings", | ||
2783 | ] | ||
2235 | 2784 | ||
2236 | [[package]] | 2785 | [[package]] |
2237 | name = "winapi-x86_64-pc-windows-gnu" | 2786 | name = "windows-implement" |
2238 | version = "0.4.0" | 2787 | version = "0.60.0" |
2239 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2788 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2240 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | 2789 | checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" |
2790 | dependencies = [ | ||
2791 | "proc-macro2", | ||
2792 | "quote", | ||
2793 | "syn", | ||
2794 | ] | ||
2241 | 2795 | ||
2242 | [[package]] | 2796 | [[package]] |
2243 | name = "windows-core" | 2797 | name = "windows-interface" |
2244 | version = "0.52.0" | 2798 | version = "0.59.1" |
2245 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2799 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2246 | checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" | 2800 | checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" |
2247 | dependencies = [ | 2801 | dependencies = [ |
2248 | "windows-targets 0.52.5", | 2802 | "proc-macro2", |
2803 | "quote", | ||
2804 | "syn", | ||
2249 | ] | 2805 | ] |
2250 | 2806 | ||
2251 | [[package]] | 2807 | [[package]] |
2252 | name = "windows-sys" | 2808 | name = "windows-link" |
2253 | version = "0.48.0" | 2809 | version = "0.1.3" |
2254 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2810 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2255 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" | 2811 | checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" |
2812 | |||
2813 | [[package]] | ||
2814 | name = "windows-result" | ||
2815 | version = "0.3.4" | ||
2816 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2817 | checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" | ||
2818 | dependencies = [ | ||
2819 | "windows-link", | ||
2820 | ] | ||
2821 | |||
2822 | [[package]] | ||
2823 | name = "windows-strings" | ||
2824 | version = "0.4.2" | ||
2825 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2826 | checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" | ||
2256 | dependencies = [ | 2827 | dependencies = [ |
2257 | "windows-targets 0.48.5", | 2828 | "windows-link", |
2258 | ] | 2829 | ] |
2259 | 2830 | ||
2260 | [[package]] | 2831 | [[package]] |
@@ -2263,129 +2834,167 @@ version = "0.52.0" | |||
2263 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2834 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2264 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" | 2835 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" |
2265 | dependencies = [ | 2836 | dependencies = [ |
2266 | "windows-targets 0.52.5", | 2837 | "windows-targets 0.52.6", |
2838 | ] | ||
2839 | |||
2840 | [[package]] | ||
2841 | name = "windows-sys" | ||
2842 | version = "0.59.0" | ||
2843 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2844 | checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" | ||
2845 | dependencies = [ | ||
2846 | "windows-targets 0.52.6", | ||
2847 | ] | ||
2848 | |||
2849 | [[package]] | ||
2850 | name = "windows-sys" | ||
2851 | version = "0.60.2" | ||
2852 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2853 | checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" | ||
2854 | dependencies = [ | ||
2855 | "windows-targets 0.53.3", | ||
2267 | ] | 2856 | ] |
2268 | 2857 | ||
2269 | [[package]] | 2858 | [[package]] |
2270 | name = "windows-targets" | 2859 | name = "windows-targets" |
2271 | version = "0.48.5" | 2860 | version = "0.52.6" |
2272 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2861 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2273 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" | 2862 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" |
2274 | dependencies = [ | 2863 | dependencies = [ |
2275 | "windows_aarch64_gnullvm 0.48.5", | 2864 | "windows_aarch64_gnullvm 0.52.6", |
2276 | "windows_aarch64_msvc 0.48.5", | 2865 | "windows_aarch64_msvc 0.52.6", |
2277 | "windows_i686_gnu 0.48.5", | 2866 | "windows_i686_gnu 0.52.6", |
2278 | "windows_i686_msvc 0.48.5", | 2867 | "windows_i686_gnullvm 0.52.6", |
2279 | "windows_x86_64_gnu 0.48.5", | 2868 | "windows_i686_msvc 0.52.6", |
2280 | "windows_x86_64_gnullvm 0.48.5", | 2869 | "windows_x86_64_gnu 0.52.6", |
2281 | "windows_x86_64_msvc 0.48.5", | 2870 | "windows_x86_64_gnullvm 0.52.6", |
2871 | "windows_x86_64_msvc 0.52.6", | ||
2282 | ] | 2872 | ] |
2283 | 2873 | ||
2284 | [[package]] | 2874 | [[package]] |
2285 | name = "windows-targets" | 2875 | name = "windows-targets" |
2286 | version = "0.52.5" | 2876 | version = "0.53.3" |
2287 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2877 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2288 | checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" | 2878 | checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" |
2289 | dependencies = [ | 2879 | dependencies = [ |
2290 | "windows_aarch64_gnullvm 0.52.5", | 2880 | "windows-link", |
2291 | "windows_aarch64_msvc 0.52.5", | 2881 | "windows_aarch64_gnullvm 0.53.0", |
2292 | "windows_i686_gnu 0.52.5", | 2882 | "windows_aarch64_msvc 0.53.0", |
2293 | "windows_i686_gnullvm", | 2883 | "windows_i686_gnu 0.53.0", |
2294 | "windows_i686_msvc 0.52.5", | 2884 | "windows_i686_gnullvm 0.53.0", |
2295 | "windows_x86_64_gnu 0.52.5", | 2885 | "windows_i686_msvc 0.53.0", |
2296 | "windows_x86_64_gnullvm 0.52.5", | 2886 | "windows_x86_64_gnu 0.53.0", |
2297 | "windows_x86_64_msvc 0.52.5", | 2887 | "windows_x86_64_gnullvm 0.53.0", |
2888 | "windows_x86_64_msvc 0.53.0", | ||
2298 | ] | 2889 | ] |
2299 | 2890 | ||
2300 | [[package]] | 2891 | [[package]] |
2301 | name = "windows_aarch64_gnullvm" | 2892 | name = "windows_aarch64_gnullvm" |
2302 | version = "0.48.5" | 2893 | version = "0.52.6" |
2303 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2894 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2304 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" | 2895 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" |
2305 | 2896 | ||
2306 | [[package]] | 2897 | [[package]] |
2307 | name = "windows_aarch64_gnullvm" | 2898 | name = "windows_aarch64_gnullvm" |
2308 | version = "0.52.5" | 2899 | version = "0.53.0" |
2309 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2900 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2310 | checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" | 2901 | checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" |
2311 | 2902 | ||
2312 | [[package]] | 2903 | [[package]] |
2313 | name = "windows_aarch64_msvc" | 2904 | name = "windows_aarch64_msvc" |
2314 | version = "0.48.5" | 2905 | version = "0.52.6" |
2315 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2906 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2316 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" | 2907 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" |
2317 | 2908 | ||
2318 | [[package]] | 2909 | [[package]] |
2319 | name = "windows_aarch64_msvc" | 2910 | name = "windows_aarch64_msvc" |
2320 | version = "0.52.5" | 2911 | version = "0.53.0" |
2321 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2912 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2322 | checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" | 2913 | checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" |
2323 | 2914 | ||
2324 | [[package]] | 2915 | [[package]] |
2325 | name = "windows_i686_gnu" | 2916 | name = "windows_i686_gnu" |
2326 | version = "0.48.5" | 2917 | version = "0.52.6" |
2327 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2918 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2328 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" | 2919 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" |
2329 | 2920 | ||
2330 | [[package]] | 2921 | [[package]] |
2331 | name = "windows_i686_gnu" | 2922 | name = "windows_i686_gnu" |
2332 | version = "0.52.5" | 2923 | version = "0.53.0" |
2924 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2925 | checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" | ||
2926 | |||
2927 | [[package]] | ||
2928 | name = "windows_i686_gnullvm" | ||
2929 | version = "0.52.6" | ||
2333 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2930 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2334 | checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" | 2931 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" |
2335 | 2932 | ||
2336 | [[package]] | 2933 | [[package]] |
2337 | name = "windows_i686_gnullvm" | 2934 | name = "windows_i686_gnullvm" |
2338 | version = "0.52.5" | 2935 | version = "0.53.0" |
2339 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2936 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2340 | checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" | 2937 | checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" |
2341 | 2938 | ||
2342 | [[package]] | 2939 | [[package]] |
2343 | name = "windows_i686_msvc" | 2940 | name = "windows_i686_msvc" |
2344 | version = "0.48.5" | 2941 | version = "0.52.6" |
2345 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2942 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2346 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" | 2943 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" |
2347 | 2944 | ||
2348 | [[package]] | 2945 | [[package]] |
2349 | name = "windows_i686_msvc" | 2946 | name = "windows_i686_msvc" |
2350 | version = "0.52.5" | 2947 | version = "0.53.0" |
2351 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2948 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2352 | checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" | 2949 | checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" |
2353 | 2950 | ||
2354 | [[package]] | 2951 | [[package]] |
2355 | name = "windows_x86_64_gnu" | 2952 | name = "windows_x86_64_gnu" |
2356 | version = "0.48.5" | 2953 | version = "0.52.6" |
2357 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2954 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2358 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" | 2955 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" |
2359 | 2956 | ||
2360 | [[package]] | 2957 | [[package]] |
2361 | name = "windows_x86_64_gnu" | 2958 | name = "windows_x86_64_gnu" |
2362 | version = "0.52.5" | 2959 | version = "0.53.0" |
2363 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2960 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2364 | checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" | 2961 | checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" |
2365 | 2962 | ||
2366 | [[package]] | 2963 | [[package]] |
2367 | name = "windows_x86_64_gnullvm" | 2964 | name = "windows_x86_64_gnullvm" |
2368 | version = "0.48.5" | 2965 | version = "0.52.6" |
2369 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2966 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2370 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" | 2967 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" |
2371 | 2968 | ||
2372 | [[package]] | 2969 | [[package]] |
2373 | name = "windows_x86_64_gnullvm" | 2970 | name = "windows_x86_64_gnullvm" |
2374 | version = "0.52.5" | 2971 | version = "0.53.0" |
2375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2972 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2376 | checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" | 2973 | checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" |
2377 | 2974 | ||
2378 | [[package]] | 2975 | [[package]] |
2379 | name = "windows_x86_64_msvc" | 2976 | name = "windows_x86_64_msvc" |
2380 | version = "0.48.5" | 2977 | version = "0.52.6" |
2381 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2978 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2382 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" | 2979 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" |
2383 | 2980 | ||
2384 | [[package]] | 2981 | [[package]] |
2385 | name = "windows_x86_64_msvc" | 2982 | name = "windows_x86_64_msvc" |
2386 | version = "0.52.5" | 2983 | version = "0.53.0" |
2984 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2985 | checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" | ||
2986 | |||
2987 | [[package]] | ||
2988 | name = "wit-bindgen" | ||
2989 | version = "0.45.0" | ||
2387 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2990 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2388 | checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" | 2991 | checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814" |
2992 | |||
2993 | [[package]] | ||
2994 | name = "writeable" | ||
2995 | version = "0.6.1" | ||
2996 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2997 | checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" | ||
2389 | 2998 | ||
2390 | [[package]] | 2999 | [[package]] |
2391 | name = "xmlparser" | 3000 | name = "xmlparser" |
@@ -2394,27 +3003,105 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2394 | checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" | 3003 | checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" |
2395 | 3004 | ||
2396 | [[package]] | 3005 | [[package]] |
3006 | name = "yoke" | ||
3007 | version = "0.8.0" | ||
3008 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
3009 | checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" | ||
3010 | dependencies = [ | ||
3011 | "serde", | ||
3012 | "stable_deref_trait", | ||
3013 | "yoke-derive", | ||
3014 | "zerofrom", | ||
3015 | ] | ||
3016 | |||
3017 | [[package]] | ||
3018 | name = "yoke-derive" | ||
3019 | version = "0.8.0" | ||
3020 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
3021 | checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" | ||
3022 | dependencies = [ | ||
3023 | "proc-macro2", | ||
3024 | "quote", | ||
3025 | "syn", | ||
3026 | "synstructure", | ||
3027 | ] | ||
3028 | |||
3029 | [[package]] | ||
2397 | name = "zerocopy" | 3030 | name = "zerocopy" |
2398 | version = "0.7.32" | 3031 | version = "0.8.26" |
2399 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3032 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2400 | checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" | 3033 | checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" |
2401 | dependencies = [ | 3034 | dependencies = [ |
2402 | "zerocopy-derive", | 3035 | "zerocopy-derive", |
2403 | ] | 3036 | ] |
2404 | 3037 | ||
2405 | [[package]] | 3038 | [[package]] |
2406 | name = "zerocopy-derive" | 3039 | name = "zerocopy-derive" |
2407 | version = "0.7.32" | 3040 | version = "0.8.26" |
3041 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
3042 | checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" | ||
3043 | dependencies = [ | ||
3044 | "proc-macro2", | ||
3045 | "quote", | ||
3046 | "syn", | ||
3047 | ] | ||
3048 | |||
3049 | [[package]] | ||
3050 | name = "zerofrom" | ||
3051 | version = "0.1.6" | ||
3052 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
3053 | checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" | ||
3054 | dependencies = [ | ||
3055 | "zerofrom-derive", | ||
3056 | ] | ||
3057 | |||
3058 | [[package]] | ||
3059 | name = "zerofrom-derive" | ||
3060 | version = "0.1.6" | ||
2408 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3061 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2409 | checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" | 3062 | checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" |
2410 | dependencies = [ | 3063 | dependencies = [ |
2411 | "proc-macro2", | 3064 | "proc-macro2", |
2412 | "quote", | 3065 | "quote", |
2413 | "syn", | 3066 | "syn", |
3067 | "synstructure", | ||
2414 | ] | 3068 | ] |
2415 | 3069 | ||
2416 | [[package]] | 3070 | [[package]] |
2417 | name = "zeroize" | 3071 | name = "zeroize" |
2418 | version = "1.7.0" | 3072 | version = "1.8.1" |
3073 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
3074 | checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" | ||
3075 | |||
3076 | [[package]] | ||
3077 | name = "zerotrie" | ||
3078 | version = "0.2.2" | ||
3079 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
3080 | checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" | ||
3081 | dependencies = [ | ||
3082 | "displaydoc", | ||
3083 | "yoke", | ||
3084 | "zerofrom", | ||
3085 | ] | ||
3086 | |||
3087 | [[package]] | ||
3088 | name = "zerovec" | ||
3089 | version = "0.11.4" | ||
3090 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
3091 | checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" | ||
3092 | dependencies = [ | ||
3093 | "yoke", | ||
3094 | "zerofrom", | ||
3095 | "zerovec-derive", | ||
3096 | ] | ||
3097 | |||
3098 | [[package]] | ||
3099 | name = "zerovec-derive" | ||
3100 | version = "0.11.1" | ||
2419 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3101 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2420 | checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" | 3102 | checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" |
3103 | dependencies = [ | ||
3104 | "proc-macro2", | ||
3105 | "quote", | ||
3106 | "syn", | ||
3107 | ] | ||
@@ -3,11 +3,11 @@ | |||
3 | "advisory-db": { | 3 | "advisory-db": { |
4 | "flake": false, | 4 | "flake": false, |
5 | "locked": { | 5 | "locked": { |
6 | "lastModified": 1714183630, | 6 | "lastModified": 1756731353, |
7 | "narHash": "sha256-1BVft7ggSN2XXFeXQjazU3jN9wVECd9qp2mZx/8GDMk=", | 7 | "narHash": "sha256-OylOWF5AASqDHsvZGiLCwBGI1wMvL4gaEMpAM88XqKY=", |
8 | "owner": "rustsec", | 8 | "owner": "rustsec", |
9 | "repo": "advisory-db", | 9 | "repo": "advisory-db", |
10 | "rev": "35e7459a331d3e0c585e56dabd03006b9b354088", | 10 | "rev": "97dec1d752d5ce500b6db833350c13acd02b17cf", |
11 | "type": "github" | 11 | "type": "github" |
12 | }, | 12 | }, |
13 | "original": { | 13 | "original": { |
@@ -18,16 +18,17 @@ | |||
18 | }, | 18 | }, |
19 | "crane": { | 19 | "crane": { |
20 | "locked": { | 20 | "locked": { |
21 | "lastModified": 1728776144, | 21 | "lastModified": 1756705356, |
22 | "narHash": "sha256-fROVjMcKRoGHofDm8dY3uDUtCMwUICh/KjBFQnuBzfg=", | 22 | "narHash": "sha256-dpBFe8SqYKr7W6KN5QOVCr8N76SBKwTslzjw+4BVBVs=", |
23 | "rev": "f876e3d905b922502f031aeec1a84490122254b7", | 23 | "owner": "ipetkov", |
24 | "revCount": 637, | 24 | "repo": "crane", |
25 | "type": "tarball", | 25 | "rev": "305707bbc27d83aa1039378e91d7dd816f4cac10", |
26 | "url": "https://api.flakehub.com/f/pinned/ipetkov/crane/0.19.1/0192831e-af28-72ac-a578-95b4e58acd46/source.tar.gz" | 26 | "type": "github" |
27 | }, | 27 | }, |
28 | "original": { | 28 | "original": { |
29 | "type": "tarball", | 29 | "owner": "ipetkov", |
30 | "url": "https://flakehub.com/f/ipetkov/crane/0.19.1.tar.gz" | 30 | "repo": "crane", |
31 | "type": "github" | ||
31 | } | 32 | } |
32 | }, | 33 | }, |
33 | "flake-utils": { | 34 | "flake-utils": { |
@@ -35,30 +36,32 @@ | |||
35 | "systems": "systems" | 36 | "systems": "systems" |
36 | }, | 37 | }, |
37 | "locked": { | 38 | "locked": { |
38 | "lastModified": 1726560853, | 39 | "lastModified": 1731533236, |
39 | "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", | 40 | "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", |
40 | "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", | 41 | "owner": "numtide", |
41 | "revCount": 101, | 42 | "repo": "flake-utils", |
42 | "type": "tarball", | 43 | "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", |
43 | "url": "https://api.flakehub.com/f/pinned/numtide/flake-utils/0.1.101%2Brev-c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a/0191ff0c-3a46-7ad4-b5e7-9f6806881886/source.tar.gz" | 44 | "type": "github" |
44 | }, | 45 | }, |
45 | "original": { | 46 | "original": { |
46 | "type": "tarball", | 47 | "owner": "numtide", |
47 | "url": "https://flakehub.com/f/numtide/flake-utils/0.1.101.tar.gz" | 48 | "repo": "flake-utils", |
49 | "type": "github" | ||
48 | } | 50 | } |
49 | }, | 51 | }, |
50 | "nixpkgs": { | 52 | "nixpkgs": { |
51 | "locked": { | 53 | "locked": { |
52 | "lastModified": 1729181673, | 54 | "lastModified": 1756617294, |
53 | "narHash": "sha256-LDiPhQ3l+fBjRATNtnuDZsBS7hqoBtPkKBkhpoBHv3I=", | 55 | "narHash": "sha256-aGnd4AHIYCWQKChAkHPpX+YYCt7pA6y2LFFA/s8q0wQ=", |
54 | "rev": "4eb33fe664af7b41a4c446f87d20c9a0a6321fa3", | 56 | "owner": "NixOS", |
55 | "revCount": 635979, | 57 | "repo": "nixpkgs", |
56 | "type": "tarball", | 58 | "rev": "b4c2c57c31e68544982226d07e4719a2d86302a8", |
57 | "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.2405.635979%2Brev-4eb33fe664af7b41a4c446f87d20c9a0a6321fa3/0192a20e-216f-78c5-8821-f030d9a83220/source.tar.gz" | 59 | "type": "github" |
58 | }, | 60 | }, |
59 | "original": { | 61 | "original": { |
60 | "type": "tarball", | 62 | "id": "nixpkgs", |
61 | "url": "https://flakehub.com/f/NixOS/nixpkgs/0.2405.%2A.tar.gz" | 63 | "ref": "nixos-25.05", |
64 | "type": "indirect" | ||
62 | } | 65 | } |
63 | }, | 66 | }, |
64 | "root": { | 67 | "root": { |
@@ -72,19 +75,16 @@ | |||
72 | }, | 75 | }, |
73 | "rust-overlay": { | 76 | "rust-overlay": { |
74 | "inputs": { | 77 | "inputs": { |
75 | "flake-utils": [ | ||
76 | "flake-utils" | ||
77 | ], | ||
78 | "nixpkgs": [ | 78 | "nixpkgs": [ |
79 | "nixpkgs" | 79 | "nixpkgs" |
80 | ] | 80 | ] |
81 | }, | 81 | }, |
82 | "locked": { | 82 | "locked": { |
83 | "lastModified": 1714356894, | 83 | "lastModified": 1756694554, |
84 | "narHash": "sha256-W6Mss7AG6bnFT1BqRApHXvLXBrFOu7V0+EUe9iML30s=", | 84 | "narHash": "sha256-z/Iy4qvcMqzhA2IAAg71Sw4BrMwbBHvCS90ZoPLsnIk=", |
85 | "owner": "oxalica", | 85 | "owner": "oxalica", |
86 | "repo": "rust-overlay", | 86 | "repo": "rust-overlay", |
87 | "rev": "d9b44509b4064f0a3fc9c7c92a603861f52fbedc", | 87 | "rev": "b29e5365120f344fe7161f14fc9e272fcc41ee56", |
88 | "type": "github" | 88 | "type": "github" |
89 | }, | 89 | }, |
90 | "original": { | 90 | "original": { |
@@ -1,12 +1,9 @@ | |||
1 | { | 1 | { |
2 | inputs = { | 2 | inputs = { |
3 | nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2405.*.tar.gz"; | 3 | nixpkgs.url = "nixpkgs/nixos-25.05"; |
4 | flake-utils.url = "https://flakehub.com/f/numtide/flake-utils/0.1.101.tar.gz"; | ||
5 | 4 | ||
6 | crane = { | 5 | crane.url = "github:ipetkov/crane"; |
7 | url = "https://flakehub.com/f/ipetkov/crane/0.19.1.tar.gz"; | 6 | flake-utils.url = "github:numtide/flake-utils"; |
8 | inputs.nixpkgs.follows = "nixpkgs"; | ||
9 | }; | ||
10 | 7 | ||
11 | advisory-db = { | 8 | advisory-db = { |
12 | url = "github:rustsec/advisory-db"; | 9 | url = "github:rustsec/advisory-db"; |
@@ -15,10 +12,7 @@ | |||
15 | 12 | ||
16 | rust-overlay = { | 13 | rust-overlay = { |
17 | url = "github:oxalica/rust-overlay"; | 14 | url = "github:oxalica/rust-overlay"; |
18 | inputs = { | 15 | inputs.nixpkgs.follows = "nixpkgs"; |
19 | nixpkgs.follows = "nixpkgs"; | ||
20 | flake-utils.follows = "flake-utils"; | ||
21 | }; | ||
22 | }; | 16 | }; |
23 | }; | 17 | }; |
24 | 18 | ||
diff --git a/gitolfs3-authenticate/Cargo.toml b/gitolfs3-authenticate/Cargo.toml index ff2b702..c39b736 100644 --- a/gitolfs3-authenticate/Cargo.toml +++ b/gitolfs3-authenticate/Cargo.toml | |||
@@ -1,7 +1,7 @@ | |||
1 | [package] | 1 | [package] |
2 | name = "gitolfs3-authenticate" | 2 | name = "gitolfs3-authenticate" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | edition = "2021" | 4 | edition = "2024" |
5 | license = "MIT" | 5 | license = "MIT" |
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |
diff --git a/gitolfs3-authenticate/src/main.rs b/gitolfs3-authenticate/src/main.rs index 027c01b..1195b1c 100644 --- a/gitolfs3-authenticate/src/main.rs +++ b/gitolfs3-authenticate/src/main.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | use anyhow::{anyhow, bail, Result}; | 1 | use anyhow::{Result, anyhow, bail}; |
2 | use chrono::Utc; | 2 | use chrono::Utc; |
3 | use gitolfs3_common::{generate_tag, load_key, Claims, Key, Operation, SpecificClaims}; | 3 | use gitolfs3_common::{Claims, Key, Operation, SpecificClaims, generate_tag, load_key}; |
4 | use serde_json::json; | 4 | use serde_json::json; |
5 | use std::{process::ExitCode, time::Duration}; | 5 | use std::{process::ExitCode, time::Duration}; |
6 | 6 | ||
diff --git a/gitolfs3-common/Cargo.toml b/gitolfs3-common/Cargo.toml index e0d3c3b..e5fbf75 100644 --- a/gitolfs3-common/Cargo.toml +++ b/gitolfs3-common/Cargo.toml | |||
@@ -1,11 +1,11 @@ | |||
1 | [package] | 1 | [package] |
2 | name = "gitolfs3-common" | 2 | name = "gitolfs3-common" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | edition = "2021" | 4 | edition = "2024" |
5 | license = "MIT" | 5 | license = "MIT" |
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |
8 | chrono = "0.4" | 8 | chrono = "0.4" |
9 | hmac-sha256 = "1.1" | 9 | hmac-sha256 = "1.1" |
10 | subtle = "2.5" | 10 | subtle = "2.6" |
11 | serde = { version = "1", features = ["derive"] } | 11 | serde = { version = "1", features = ["derive"] } |
diff --git a/gitolfs3-common/src/lib.rs b/gitolfs3-common/src/lib.rs index 917f566..3b1e084 100644 --- a/gitolfs3-common/src/lib.rs +++ b/gitolfs3-common/src/lib.rs | |||
@@ -1,5 +1,5 @@ | |||
1 | use chrono::{DateTime, Utc}; | 1 | use chrono::{DateTime, Utc}; |
2 | use serde::{de, Deserialize, Serialize}; | 2 | use serde::{Deserialize, Serialize, de}; |
3 | use std::{ | 3 | use std::{ |
4 | fmt::{self, Write}, | 4 | fmt::{self, Write}, |
5 | ops, | 5 | ops, |
@@ -128,7 +128,7 @@ impl fmt::Display for HexByte { | |||
128 | 128 | ||
129 | #[derive(Debug, PartialEq, Eq, Copy, Clone)] | 129 | #[derive(Debug, PartialEq, Eq, Copy, Clone)] |
130 | pub enum ParseHexError { | 130 | pub enum ParseHexError { |
131 | UnevenNibbles, | 131 | OddNibbleAmount, |
132 | InvalidCharacter, | 132 | InvalidCharacter, |
133 | TooShort, | 133 | TooShort, |
134 | TooLong, | 134 | TooLong, |
@@ -137,8 +137,8 @@ pub enum ParseHexError { | |||
137 | impl fmt::Display for ParseHexError { | 137 | impl fmt::Display for ParseHexError { |
138 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | 138 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
139 | match self { | 139 | match self { |
140 | Self::UnevenNibbles => { | 140 | Self::OddNibbleAmount => { |
141 | write!(f, "uneven amount of nibbles (chars in range [a-zA-Z0-9])") | 141 | write!(f, "odd amount of nibbles (chars in range [a-zA-Z0-9])") |
142 | } | 142 | } |
143 | Self::InvalidCharacter => write!(f, "non-hex character encountered"), | 143 | Self::InvalidCharacter => write!(f, "non-hex character encountered"), |
144 | Self::TooShort => write!(f, "unexpected end of hex sequence"), | 144 | Self::TooShort => write!(f, "unexpected end of hex sequence"), |
@@ -163,13 +163,13 @@ impl fmt::Display for ReadHexError { | |||
163 | } | 163 | } |
164 | 164 | ||
165 | fn parse_hex_exact(value: &str, buf: &mut [u8]) -> Result<(), ParseHexError> { | 165 | fn parse_hex_exact(value: &str, buf: &mut [u8]) -> Result<(), ParseHexError> { |
166 | if value.bytes().len() % 2 == 1 { | 166 | if value.len() % 2 == 1 { |
167 | return Err(ParseHexError::UnevenNibbles); | 167 | return Err(ParseHexError::OddNibbleAmount); |
168 | } | 168 | } |
169 | if value.bytes().len() < 2 * buf.len() { | 169 | if value.len() < 2 * buf.len() { |
170 | return Err(ParseHexError::TooShort); | 170 | return Err(ParseHexError::TooShort); |
171 | } | 171 | } |
172 | if value.bytes().len() > 2 * buf.len() { | 172 | if value.len() > 2 * buf.len() { |
173 | return Err(ParseHexError::TooLong); | 173 | return Err(ParseHexError::TooLong); |
174 | } | 174 | } |
175 | for (i, c) in value.bytes().enumerate() { | 175 | for (i, c) in value.bytes().enumerate() { |
diff --git a/gitolfs3-server/Cargo.toml b/gitolfs3-server/Cargo.toml index efea78b..5908770 100644 --- a/gitolfs3-server/Cargo.toml +++ b/gitolfs3-server/Cargo.toml | |||
@@ -1,20 +1,20 @@ | |||
1 | [package] | 1 | [package] |
2 | name = "gitolfs3-server" | 2 | name = "gitolfs3-server" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | edition = "2021" | 4 | edition = "2024" |
5 | license = "MIT" | 5 | license = "MIT" |
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |
8 | aws-config = { version = "1.1.2" } | 8 | aws-config = "1.6" |
9 | aws-sdk-s3 = "1.12.0" | 9 | aws-sdk-s3 = "1.82" |
10 | axum = "0.7" | 10 | axum = "0.8" |
11 | base64 = "0.21" | 11 | base64 = "0.22" |
12 | chrono = { version = "0.4", features = ["serde"] } | 12 | chrono = { version = "0.4", features = ["serde"] } |
13 | gitolfs3-common = { path = "../gitolfs3-common" } | 13 | gitolfs3-common = { path = "../gitolfs3-common" } |
14 | mime = "0.3" | 14 | mime = "0.3" |
15 | serde = { version = "1", features = ["derive"] } | 15 | serde = { version = "1", features = ["derive"] } |
16 | serde_json = "1" | 16 | serde_json = "1" |
17 | tokio = { version = "1.35", features = ["full"] } | 17 | tokio = { version = "1.44", features = ["full"] } |
18 | tokio-util = "0.7" | 18 | tokio-util = "0.7" |
19 | tower = "0.4" | 19 | tower = "0.5" |
20 | tracing-subscriber = { version = "0.3", features = ["env-filter"] } | 20 | tracing-subscriber = { version = "0.3", features = ["env-filter"] } |
diff --git a/gitolfs3-server/src/api.rs b/gitolfs3-server/src/api.rs index d71d188..87c1856 100644 --- a/gitolfs3-server/src/api.rs +++ b/gitolfs3-server/src/api.rs | |||
@@ -1,15 +1,14 @@ | |||
1 | use std::collections::HashMap; | 1 | use std::collections::HashMap; |
2 | 2 | ||
3 | use axum::{ | 3 | use axum::{ |
4 | async_trait, | 4 | Extension, Json, |
5 | extract::{rejection, FromRequest, FromRequestParts, Request}, | 5 | extract::{FromRequest, FromRequestParts, Request, rejection}, |
6 | http, | 6 | http, |
7 | response::{IntoResponse, Response}, | 7 | response::{IntoResponse, Response}, |
8 | Extension, Json, | ||
9 | }; | 8 | }; |
10 | use chrono::{DateTime, Utc}; | 9 | use chrono::{DateTime, Utc}; |
11 | use gitolfs3_common::{Oid, Operation}; | 10 | use gitolfs3_common::{Oid, Operation}; |
12 | use serde::{de::DeserializeOwned, Deserialize, Serialize}; | 11 | use serde::{Deserialize, Serialize, de::DeserializeOwned}; |
13 | 12 | ||
14 | // ----------------------- Generic facilities ---------------------- | 13 | // ----------------------- Generic facilities ---------------------- |
15 | 14 | ||
@@ -20,7 +19,10 @@ pub struct GitLfsErrorData<'a> { | |||
20 | pub message: &'a str, | 19 | pub message: &'a str, |
21 | } | 20 | } |
22 | 21 | ||
23 | pub const fn make_error_resp(code: http::StatusCode, message: &str) -> GitLfsErrorResponse { | 22 | pub const fn make_error_resp<'a>( |
23 | code: http::StatusCode, | ||
24 | message: &'a str, | ||
25 | ) -> GitLfsErrorResponse<'a> { | ||
24 | (code, GitLfsJson(Json(GitLfsErrorData { message }))) | 26 | (code, GitLfsJson(Json(GitLfsErrorData { message }))) |
25 | } | 27 | } |
26 | 28 | ||
@@ -76,7 +78,6 @@ fn has_git_lfs_json_content_type(req: &Request) -> bool { | |||
76 | is_git_lfs_json_mimetype(content_type) | 78 | is_git_lfs_json_mimetype(content_type) |
77 | } | 79 | } |
78 | 80 | ||
79 | #[async_trait] | ||
80 | impl<T, S> FromRequest<S> for GitLfsJson<T> | 81 | impl<T, S> FromRequest<S> for GitLfsJson<T> |
81 | where | 82 | where |
82 | T: DeserializeOwned, | 83 | T: DeserializeOwned, |
@@ -122,7 +123,6 @@ impl IntoResponse for RepositoryNameRejection { | |||
122 | } | 123 | } |
123 | } | 124 | } |
124 | 125 | ||
125 | #[async_trait] | ||
126 | impl<S: Send + Sync> FromRequestParts<S> for RepositoryName { | 126 | impl<S: Send + Sync> FromRequestParts<S> for RepositoryName { |
127 | type Rejection = RepositoryNameRejection; | 127 | type Rejection = RepositoryNameRejection; |
128 | 128 | ||
diff --git a/gitolfs3-server/src/authz.rs b/gitolfs3-server/src/authz.rs index 8a5f21f..c4cb6df 100644 --- a/gitolfs3-server/src/authz.rs +++ b/gitolfs3-server/src/authz.rs | |||
@@ -2,10 +2,10 @@ use std::collections::HashSet; | |||
2 | 2 | ||
3 | use axum::http; | 3 | use axum::http; |
4 | use chrono::{DateTime, Utc}; | 4 | use chrono::{DateTime, Utc}; |
5 | use gitolfs3_common::{generate_tag, Claims, Digest, Oid, Operation, SpecificClaims}; | 5 | use gitolfs3_common::{Claims, Digest, Oid, Operation, SpecificClaims, generate_tag}; |
6 | 6 | ||
7 | use crate::{ | 7 | use crate::{ |
8 | api::{make_error_resp, GitLfsErrorResponse, REPO_NOT_FOUND}, | 8 | api::{GitLfsErrorResponse, REPO_NOT_FOUND, make_error_resp}, |
9 | config::AuthorizationConfig, | 9 | config::AuthorizationConfig, |
10 | }; | 10 | }; |
11 | 11 | ||
diff --git a/gitolfs3-server/src/config.rs b/gitolfs3-server/src/config.rs index c6a51a5..5167cca 100644 --- a/gitolfs3-server/src/config.rs +++ b/gitolfs3-server/src/config.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | use std::collections::HashSet; | 1 | use std::collections::HashSet; |
2 | 2 | ||
3 | use gitolfs3_common::{load_key, Key}; | 3 | use gitolfs3_common::{Key, load_key}; |
4 | 4 | ||
5 | pub struct Config { | 5 | pub struct Config { |
6 | pub listen_addr: (String, u16), | 6 | pub listen_addr: (String, u16), |
@@ -18,19 +18,11 @@ pub struct AuthorizationConfig { | |||
18 | 18 | ||
19 | impl Config { | 19 | impl Config { |
20 | pub fn load() -> Result<Self, String> { | 20 | pub fn load() -> Result<Self, String> { |
21 | let env = match Env::load() { | 21 | let env = Env::load().map_err(|e| format!("failed to load configuration: {e}"))?; |
22 | Ok(env) => env, | 22 | let s3_client = |
23 | Err(e) => return Err(format!("failed to load configuration: {e}")), | 23 | create_s3_client(&env).map_err(|e| format!("failed to create S3 client: {e}"))?; |
24 | }; | 24 | let key = |
25 | 25 | load_key(&env.key_path).map_err(|e| format!("failed to load Gitolfs3 key: {e}"))?; | |
26 | let s3_client = match create_s3_client(&env) { | ||
27 | Ok(s3_client) => s3_client, | ||
28 | Err(e) => return Err(format!("failed to create S3 client: {e}")), | ||
29 | }; | ||
30 | let key = match load_key(&env.key_path) { | ||
31 | Ok(key) => key, | ||
32 | Err(e) => return Err(format!("failed to load Gitolfs3 key: {e}")), | ||
33 | }; | ||
34 | 26 | ||
35 | let trusted_forwarded_hosts: HashSet<String> = env | 27 | let trusted_forwarded_hosts: HashSet<String> = env |
36 | .trusted_forwarded_hosts | 28 | .trusted_forwarded_hosts |
diff --git a/gitolfs3-server/src/handler.rs b/gitolfs3-server/src/handler.rs index 64d5492..c5d4a61 100644 --- a/gitolfs3-server/src/handler.rs +++ b/gitolfs3-server/src/handler.rs | |||
@@ -2,24 +2,24 @@ use std::{collections::HashMap, sync::Arc}; | |||
2 | 2 | ||
3 | use aws_sdk_s3::{error::SdkError, operation::head_object::HeadObjectOutput}; | 3 | use aws_sdk_s3::{error::SdkError, operation::head_object::HeadObjectOutput}; |
4 | use axum::{ | 4 | use axum::{ |
5 | Json, | ||
5 | extract::{Path, State}, | 6 | extract::{Path, State}, |
6 | http, | 7 | http, |
7 | response::{IntoResponse, Response}, | 8 | response::{IntoResponse, Response}, |
8 | Json, | ||
9 | }; | 9 | }; |
10 | use base64::{prelude::BASE64_STANDARD, Engine}; | 10 | use base64::{Engine, prelude::BASE64_STANDARD}; |
11 | use chrono::Utc; | 11 | use chrono::Utc; |
12 | use gitolfs3_common::{generate_tag, Claims, HexByte, Oid, Operation, SpecificClaims}; | 12 | use gitolfs3_common::{Claims, HexByte, Oid, Operation, SpecificClaims, generate_tag}; |
13 | use serde::{de, Deserialize}; | 13 | use serde::{Deserialize, de}; |
14 | use tokio::sync::Mutex; | 14 | use tokio::sync::Mutex; |
15 | 15 | ||
16 | use crate::{ | 16 | use crate::{ |
17 | api::{ | 17 | api::{ |
18 | is_git_lfs_json_mimetype, make_error_resp, BatchRequest, BatchRequestObject, BatchResponse, | 18 | BatchRequest, BatchRequestObject, BatchResponse, BatchResponseObject, |
19 | BatchResponseObject, BatchResponseObjectAction, BatchResponseObjectActions, GitLfsJson, | 19 | BatchResponseObjectAction, BatchResponseObjectActions, GitLfsJson, HashAlgo, LFS_MIME, |
20 | HashAlgo, RepositoryName, TransferAdapter, LFS_MIME, REPO_NOT_FOUND, | 20 | REPO_NOT_FOUND, RepositoryName, TransferAdapter, is_git_lfs_json_mimetype, make_error_resp, |
21 | }, | 21 | }, |
22 | authz::{authorize_batch, authorize_get, Trusted}, | 22 | authz::{Trusted, authorize_batch, authorize_get}, |
23 | config::AuthorizationConfig, | 23 | config::AuthorizationConfig, |
24 | dlimit::DownloadLimiter, | 24 | dlimit::DownloadLimiter, |
25 | }; | 25 | }; |
@@ -144,31 +144,31 @@ async fn handle_download_object( | |||
144 | }; | 144 | }; |
145 | } | 145 | } |
146 | 146 | ||
147 | if let Some(content_length) = content_length { | 147 | if let Some(content_length) = content_length |
148 | if content_length > 0 { | 148 | && content_length > 0 |
149 | match state | 149 | { |
150 | .dl_limiter | 150 | match state |
151 | .lock() | 151 | .dl_limiter |
152 | .await | 152 | .lock() |
153 | .request(content_length as u64) | 153 | .await |
154 | .await | 154 | .request(content_length as u64) |
155 | { | 155 | .await |
156 | Ok(true) => {} | 156 | { |
157 | Ok(false) => { | 157 | Ok(true) => {} |
158 | return BatchResponseObject::error( | 158 | Ok(false) => { |
159 | obj, | 159 | return BatchResponseObject::error( |
160 | http::StatusCode::SERVICE_UNAVAILABLE, | 160 | obj, |
161 | "Public LFS downloads temporarily unavailable".to_string(), | 161 | http::StatusCode::SERVICE_UNAVAILABLE, |
162 | ); | 162 | "Public LFS downloads temporarily unavailable".to_string(), |
163 | } | 163 | ); |
164 | Err(e) => { | 164 | } |
165 | println!("Failed to request {content_length} bytes from download limiter: {e}"); | 165 | Err(e) => { |
166 | return BatchResponseObject::error( | 166 | println!("Failed to request {content_length} bytes from download limiter: {e}"); |
167 | obj, | 167 | return BatchResponseObject::error( |
168 | http::StatusCode::INTERNAL_SERVER_ERROR, | 168 | obj, |
169 | "Internal server error".to_string(), | 169 | http::StatusCode::INTERNAL_SERVER_ERROR, |
170 | ); | 170 | "Internal server error".to_string(), |
171 | } | 171 | ); |
172 | } | 172 | } |
173 | } | 173 | } |
174 | } | 174 | } |
@@ -433,12 +433,11 @@ fn s3_encode_checksum(oid: Oid) -> String { | |||
433 | } | 433 | } |
434 | 434 | ||
435 | fn s3_validate_checksum(oid: Oid, obj: &HeadObjectOutput) -> bool { | 435 | fn s3_validate_checksum(oid: Oid, obj: &HeadObjectOutput) -> bool { |
436 | if let Some(checksum) = obj.checksum_sha256() { | 436 | if let Some(checksum) = obj.checksum_sha256() |
437 | if let Ok(checksum) = BASE64_STANDARD.decode(checksum) { | 437 | && let Ok(checksum) = BASE64_STANDARD.decode(checksum) |
438 | if let Ok(checksum32b) = TryInto::<[u8; 32]>::try_into(checksum) { | 438 | && let Ok(checksum32b) = TryInto::<[u8; 32]>::try_into(checksum) |
439 | return Oid::from(checksum32b) == oid; | 439 | { |
440 | } | 440 | return Oid::from(checksum32b) == oid; |
441 | } | ||
442 | } | 441 | } |
443 | true | 442 | true |
444 | } | 443 | } |
diff --git a/gitolfs3-server/src/main.rs b/gitolfs3-server/src/main.rs index 46e840a..c88de76 100644 --- a/gitolfs3-server/src/main.rs +++ b/gitolfs3-server/src/main.rs | |||
@@ -9,12 +9,12 @@ use config::Config; | |||
9 | use dlimit::DownloadLimiter; | 9 | use dlimit::DownloadLimiter; |
10 | 10 | ||
11 | use axum::{ | 11 | use axum::{ |
12 | Router, ServiceExt, | ||
12 | extract::OriginalUri, | 13 | extract::OriginalUri, |
13 | http::{self, Uri}, | 14 | http::{self, Uri}, |
14 | routing::{get, post}, | 15 | routing::{get, post}, |
15 | Router, ServiceExt, | ||
16 | }; | 16 | }; |
17 | use handler::{handle_batch, handle_obj_download, AppState}; | 17 | use handler::{AppState, handle_batch, handle_obj_download}; |
18 | use std::{process::ExitCode, sync::Arc}; | 18 | use std::{process::ExitCode, sync::Arc}; |
19 | use tokio::net::TcpListener; | 19 | use tokio::net::TcpListener; |
20 | use tower::Layer; | 20 | use tower::Layer; |
@@ -41,7 +41,7 @@ async fn main() -> ExitCode { | |||
41 | }); | 41 | }); |
42 | let app = Router::new() | 42 | let app = Router::new() |
43 | .route("/batch", post(handle_batch)) | 43 | .route("/batch", post(handle_batch)) |
44 | .route("/:oid0/:oid1/:oid", get(handle_obj_download)) | 44 | .route("/{oid0}/{oid1}/{oid}", get(handle_obj_download)) |
45 | .with_state(shared_state); | 45 | .with_state(shared_state); |
46 | 46 | ||
47 | let middleware = axum::middleware::map_request(rewrite_url); | 47 | let middleware = axum::middleware::map_request(rewrite_url); |
diff --git a/gitolfs3-shell/Cargo.toml b/gitolfs3-shell/Cargo.toml index dd348ce..3442081 100644 --- a/gitolfs3-shell/Cargo.toml +++ b/gitolfs3-shell/Cargo.toml | |||
@@ -1,7 +1,7 @@ | |||
1 | [package] | 1 | [package] |
2 | name = "gitolfs3-shell" | 2 | name = "gitolfs3-shell" |
3 | version = "0.1.0" | 3 | version = "0.1.0" |
4 | edition = "2021" | 4 | edition = "2024" |
5 | license = "MIT" | 5 | license = "MIT" |
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |