itsi-scheduler 0.2.25 → 0.2.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +190 -208
- data/Cargo.toml +0 -1
- data/ext/itsi_scheduler/Cargo.toml +1 -1
- data/ext/itsi_server/Cargo.lock +2 -2
- data/ext/itsi_server/Cargo.toml +1 -1
- data/ext/itsi_server/src/server/middleware_stack/mod.rs +9 -3
- data/ext/itsi_server/src/services/itsi_http_service.rs +8 -5
- data/lib/itsi/scheduler/version.rb +1 -1
- metadata +2 -20
- data/vendor/rb-sys-build/.cargo-ok +0 -1
- data/vendor/rb-sys-build/.cargo_vcs_info.json +0 -6
- data/vendor/rb-sys-build/Cargo.lock +0 -294
- data/vendor/rb-sys-build/Cargo.toml +0 -71
- data/vendor/rb-sys-build/Cargo.toml.orig +0 -32
- data/vendor/rb-sys-build/LICENSE-APACHE +0 -190
- data/vendor/rb-sys-build/LICENSE-MIT +0 -21
- data/vendor/rb-sys-build/src/bindings/sanitizer.rs +0 -185
- data/vendor/rb-sys-build/src/bindings/stable_api.rs +0 -247
- data/vendor/rb-sys-build/src/bindings/wrapper.h +0 -71
- data/vendor/rb-sys-build/src/bindings.rs +0 -280
- data/vendor/rb-sys-build/src/cc.rs +0 -421
- data/vendor/rb-sys-build/src/lib.rs +0 -12
- data/vendor/rb-sys-build/src/rb_config/flags.rs +0 -101
- data/vendor/rb-sys-build/src/rb_config/library.rs +0 -132
- data/vendor/rb-sys-build/src/rb_config/search_path.rs +0 -57
- data/vendor/rb-sys-build/src/rb_config.rs +0 -906
- data/vendor/rb-sys-build/src/utils.rs +0 -53
data/Cargo.lock
CHANGED
|
@@ -4,18 +4,18 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aho-corasick"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.3"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
15
|
name = "anyhow"
|
|
16
|
-
version = "1.0.
|
|
16
|
+
version = "1.0.98"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "atty"
|
|
@@ -28,6 +28,12 @@ dependencies = [
|
|
|
28
28
|
"winapi",
|
|
29
29
|
]
|
|
30
30
|
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "autocfg"
|
|
33
|
+
version = "1.4.0"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
36
|
+
|
|
31
37
|
[[package]]
|
|
32
38
|
name = "base64"
|
|
33
39
|
version = "0.22.1"
|
|
@@ -49,28 +55,27 @@ dependencies = [
|
|
|
49
55
|
"regex",
|
|
50
56
|
"rustc-hash",
|
|
51
57
|
"shlex",
|
|
52
|
-
"syn 2.0.
|
|
58
|
+
"syn 2.0.101",
|
|
53
59
|
]
|
|
54
60
|
|
|
55
61
|
[[package]]
|
|
56
62
|
name = "bitflags"
|
|
57
|
-
version = "2.
|
|
63
|
+
version = "2.9.0"
|
|
58
64
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
-
checksum = "
|
|
65
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
60
66
|
|
|
61
67
|
[[package]]
|
|
62
68
|
name = "bytes"
|
|
63
|
-
version = "1.
|
|
69
|
+
version = "1.10.1"
|
|
64
70
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
-
checksum = "
|
|
71
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
66
72
|
|
|
67
73
|
[[package]]
|
|
68
74
|
name = "cc"
|
|
69
|
-
version = "1.2.
|
|
75
|
+
version = "1.2.20"
|
|
70
76
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
-
checksum = "
|
|
77
|
+
checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
|
|
72
78
|
dependencies = [
|
|
73
|
-
"find-msvc-tools",
|
|
74
79
|
"shlex",
|
|
75
80
|
]
|
|
76
81
|
|
|
@@ -85,9 +90,9 @@ dependencies = [
|
|
|
85
90
|
|
|
86
91
|
[[package]]
|
|
87
92
|
name = "cfg-if"
|
|
88
|
-
version = "1.0.
|
|
93
|
+
version = "1.0.0"
|
|
89
94
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
95
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
91
96
|
|
|
92
97
|
[[package]]
|
|
93
98
|
name = "cfg_aliases"
|
|
@@ -123,32 +128,31 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
123
128
|
|
|
124
129
|
[[package]]
|
|
125
130
|
name = "deranged"
|
|
126
|
-
version = "0.
|
|
131
|
+
version = "0.4.0"
|
|
127
132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
133
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
129
134
|
dependencies = [
|
|
130
135
|
"powerfmt",
|
|
131
136
|
]
|
|
132
137
|
|
|
133
138
|
[[package]]
|
|
134
139
|
name = "derive_more"
|
|
135
|
-
version = "2.
|
|
140
|
+
version = "2.0.1"
|
|
136
141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
-
checksum = "
|
|
142
|
+
checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
|
|
138
143
|
dependencies = [
|
|
139
144
|
"derive_more-impl",
|
|
140
145
|
]
|
|
141
146
|
|
|
142
147
|
[[package]]
|
|
143
148
|
name = "derive_more-impl"
|
|
144
|
-
version = "2.
|
|
149
|
+
version = "2.0.1"
|
|
145
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
-
checksum = "
|
|
151
|
+
checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
|
147
152
|
dependencies = [
|
|
148
153
|
"proc-macro2",
|
|
149
154
|
"quote",
|
|
150
|
-
"
|
|
151
|
-
"syn 2.0.117",
|
|
155
|
+
"syn 2.0.101",
|
|
152
156
|
"unicode-xid",
|
|
153
157
|
]
|
|
154
158
|
|
|
@@ -158,17 +162,11 @@ version = "1.15.0"
|
|
|
158
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
163
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
160
164
|
|
|
161
|
-
[[package]]
|
|
162
|
-
name = "find-msvc-tools"
|
|
163
|
-
version = "0.1.9"
|
|
164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
166
|
-
|
|
167
165
|
[[package]]
|
|
168
166
|
name = "getrandom"
|
|
169
|
-
version = "0.2.
|
|
167
|
+
version = "0.2.16"
|
|
170
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
-
checksum = "
|
|
169
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
172
170
|
dependencies = [
|
|
173
171
|
"cfg-if",
|
|
174
172
|
"libc",
|
|
@@ -177,9 +175,9 @@ dependencies = [
|
|
|
177
175
|
|
|
178
176
|
[[package]]
|
|
179
177
|
name = "glob"
|
|
180
|
-
version = "0.3.
|
|
178
|
+
version = "0.3.2"
|
|
181
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
-
checksum = "
|
|
180
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
183
181
|
|
|
184
182
|
[[package]]
|
|
185
183
|
name = "hermit-abi"
|
|
@@ -198,22 +196,22 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
198
196
|
|
|
199
197
|
[[package]]
|
|
200
198
|
name = "itertools"
|
|
201
|
-
version = "0.
|
|
199
|
+
version = "0.12.1"
|
|
202
200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
-
checksum = "
|
|
201
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
204
202
|
dependencies = [
|
|
205
203
|
"either",
|
|
206
204
|
]
|
|
207
205
|
|
|
208
206
|
[[package]]
|
|
209
207
|
name = "itoa"
|
|
210
|
-
version = "1.0.
|
|
208
|
+
version = "1.0.15"
|
|
211
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
-
checksum = "
|
|
210
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
213
211
|
|
|
214
212
|
[[package]]
|
|
215
213
|
name = "itsi-scheduler"
|
|
216
|
-
version = "0.2.
|
|
214
|
+
version = "0.2.26"
|
|
217
215
|
dependencies = [
|
|
218
216
|
"bytes",
|
|
219
217
|
"derive_more",
|
|
@@ -238,7 +236,7 @@ dependencies = [
|
|
|
238
236
|
"magnus",
|
|
239
237
|
"nix",
|
|
240
238
|
"rcgen",
|
|
241
|
-
"thiserror",
|
|
239
|
+
"thiserror 2.0.12",
|
|
242
240
|
]
|
|
243
241
|
|
|
244
242
|
[[package]]
|
|
@@ -280,34 +278,35 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
280
278
|
|
|
281
279
|
[[package]]
|
|
282
280
|
name = "libc"
|
|
283
|
-
version = "0.2.
|
|
281
|
+
version = "0.2.172"
|
|
284
282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
283
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
286
284
|
|
|
287
285
|
[[package]]
|
|
288
286
|
name = "libloading"
|
|
289
|
-
version = "0.8.
|
|
287
|
+
version = "0.8.6"
|
|
290
288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
-
checksum = "
|
|
289
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
292
290
|
dependencies = [
|
|
293
291
|
"cfg-if",
|
|
294
|
-
"windows-
|
|
292
|
+
"windows-targets",
|
|
295
293
|
]
|
|
296
294
|
|
|
297
295
|
[[package]]
|
|
298
296
|
name = "lock_api"
|
|
299
|
-
version = "0.4.
|
|
297
|
+
version = "0.4.12"
|
|
300
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
-
checksum = "
|
|
299
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
302
300
|
dependencies = [
|
|
301
|
+
"autocfg",
|
|
303
302
|
"scopeguard",
|
|
304
303
|
]
|
|
305
304
|
|
|
306
305
|
[[package]]
|
|
307
306
|
name = "log"
|
|
308
|
-
version = "0.4.
|
|
307
|
+
version = "0.4.27"
|
|
309
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
-
checksum = "
|
|
309
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
311
310
|
|
|
312
311
|
[[package]]
|
|
313
312
|
name = "magnus"
|
|
@@ -328,23 +327,23 @@ source = "git+https://github.com/matsadler/magnus.git?rev=1ed232edb2b75a2eed9b1d
|
|
|
328
327
|
dependencies = [
|
|
329
328
|
"proc-macro2",
|
|
330
329
|
"quote",
|
|
331
|
-
"syn 2.0.
|
|
330
|
+
"syn 2.0.101",
|
|
332
331
|
]
|
|
333
332
|
|
|
334
333
|
[[package]]
|
|
335
334
|
name = "matchers"
|
|
336
|
-
version = "0.
|
|
335
|
+
version = "0.1.0"
|
|
337
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "
|
|
337
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
339
338
|
dependencies = [
|
|
340
|
-
"regex-automata",
|
|
339
|
+
"regex-automata 0.1.10",
|
|
341
340
|
]
|
|
342
341
|
|
|
343
342
|
[[package]]
|
|
344
343
|
name = "memchr"
|
|
345
|
-
version = "2.
|
|
344
|
+
version = "2.7.4"
|
|
346
345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "
|
|
346
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
348
347
|
|
|
349
348
|
[[package]]
|
|
350
349
|
name = "minimal-lexical"
|
|
@@ -354,14 +353,14 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
354
353
|
|
|
355
354
|
[[package]]
|
|
356
355
|
name = "mio"
|
|
357
|
-
version = "1.
|
|
356
|
+
version = "1.0.3"
|
|
358
357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
-
checksum = "
|
|
358
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
360
359
|
dependencies = [
|
|
361
360
|
"libc",
|
|
362
361
|
"log",
|
|
363
362
|
"wasi",
|
|
364
|
-
"windows-sys
|
|
363
|
+
"windows-sys",
|
|
365
364
|
]
|
|
366
365
|
|
|
367
366
|
[[package]]
|
|
@@ -388,30 +387,37 @@ dependencies = [
|
|
|
388
387
|
|
|
389
388
|
[[package]]
|
|
390
389
|
name = "nu-ansi-term"
|
|
391
|
-
version = "0.
|
|
390
|
+
version = "0.46.0"
|
|
392
391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
-
checksum = "
|
|
392
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
394
393
|
dependencies = [
|
|
395
|
-
"
|
|
394
|
+
"overload",
|
|
395
|
+
"winapi",
|
|
396
396
|
]
|
|
397
397
|
|
|
398
398
|
[[package]]
|
|
399
399
|
name = "num-conv"
|
|
400
|
-
version = "0.
|
|
400
|
+
version = "0.1.0"
|
|
401
401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
-
checksum = "
|
|
402
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
403
403
|
|
|
404
404
|
[[package]]
|
|
405
405
|
name = "once_cell"
|
|
406
|
-
version = "1.21.
|
|
406
|
+
version = "1.21.3"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "overload"
|
|
412
|
+
version = "0.1.1"
|
|
407
413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
414
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
409
415
|
|
|
410
416
|
[[package]]
|
|
411
417
|
name = "parking_lot"
|
|
412
|
-
version = "0.12.
|
|
418
|
+
version = "0.12.3"
|
|
413
419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
-
checksum = "
|
|
420
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
415
421
|
dependencies = [
|
|
416
422
|
"lock_api",
|
|
417
423
|
"parking_lot_core",
|
|
@@ -419,32 +425,32 @@ dependencies = [
|
|
|
419
425
|
|
|
420
426
|
[[package]]
|
|
421
427
|
name = "parking_lot_core"
|
|
422
|
-
version = "0.9.
|
|
428
|
+
version = "0.9.10"
|
|
423
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
-
checksum = "
|
|
430
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
425
431
|
dependencies = [
|
|
426
432
|
"cfg-if",
|
|
427
433
|
"libc",
|
|
428
434
|
"redox_syscall",
|
|
429
435
|
"smallvec",
|
|
430
|
-
"windows-
|
|
436
|
+
"windows-targets",
|
|
431
437
|
]
|
|
432
438
|
|
|
433
439
|
[[package]]
|
|
434
440
|
name = "pem"
|
|
435
|
-
version = "3.0.
|
|
441
|
+
version = "3.0.5"
|
|
436
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
-
checksum = "
|
|
443
|
+
checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
|
|
438
444
|
dependencies = [
|
|
439
445
|
"base64",
|
|
440
|
-
"
|
|
446
|
+
"serde",
|
|
441
447
|
]
|
|
442
448
|
|
|
443
449
|
[[package]]
|
|
444
450
|
name = "pin-project-lite"
|
|
445
|
-
version = "0.2.
|
|
451
|
+
version = "0.2.16"
|
|
446
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
-
checksum = "
|
|
453
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
448
454
|
|
|
449
455
|
[[package]]
|
|
450
456
|
name = "powerfmt"
|
|
@@ -454,36 +460,36 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
454
460
|
|
|
455
461
|
[[package]]
|
|
456
462
|
name = "proc-macro2"
|
|
457
|
-
version = "1.0.
|
|
463
|
+
version = "1.0.95"
|
|
458
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
-
checksum = "
|
|
465
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
460
466
|
dependencies = [
|
|
461
467
|
"unicode-ident",
|
|
462
468
|
]
|
|
463
469
|
|
|
464
470
|
[[package]]
|
|
465
471
|
name = "quote"
|
|
466
|
-
version = "1.0.
|
|
472
|
+
version = "1.0.40"
|
|
467
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
-
checksum = "
|
|
474
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
469
475
|
dependencies = [
|
|
470
476
|
"proc-macro2",
|
|
471
477
|
]
|
|
472
478
|
|
|
473
479
|
[[package]]
|
|
474
480
|
name = "rb-sys"
|
|
475
|
-
version = "0.9.
|
|
481
|
+
version = "0.9.124"
|
|
476
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
-
checksum = "
|
|
483
|
+
checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
|
|
478
484
|
dependencies = [
|
|
479
485
|
"rb-sys-build",
|
|
480
486
|
]
|
|
481
487
|
|
|
482
488
|
[[package]]
|
|
483
489
|
name = "rb-sys-build"
|
|
484
|
-
version = "0.9.
|
|
490
|
+
version = "0.9.128"
|
|
485
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "
|
|
492
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
487
493
|
dependencies = [
|
|
488
494
|
"bindgen",
|
|
489
495
|
"lazy_static",
|
|
@@ -491,7 +497,7 @@ dependencies = [
|
|
|
491
497
|
"quote",
|
|
492
498
|
"regex",
|
|
493
499
|
"shell-words",
|
|
494
|
-
"syn 2.0.
|
|
500
|
+
"syn 2.0.101",
|
|
495
501
|
]
|
|
496
502
|
|
|
497
503
|
[[package]]
|
|
@@ -515,41 +521,56 @@ dependencies = [
|
|
|
515
521
|
|
|
516
522
|
[[package]]
|
|
517
523
|
name = "redox_syscall"
|
|
518
|
-
version = "0.5.
|
|
524
|
+
version = "0.5.11"
|
|
519
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
-
checksum = "
|
|
526
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
521
527
|
dependencies = [
|
|
522
528
|
"bitflags",
|
|
523
529
|
]
|
|
524
530
|
|
|
525
531
|
[[package]]
|
|
526
532
|
name = "regex"
|
|
527
|
-
version = "1.
|
|
533
|
+
version = "1.11.1"
|
|
528
534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
535
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
530
536
|
dependencies = [
|
|
531
537
|
"aho-corasick",
|
|
532
538
|
"memchr",
|
|
533
|
-
"regex-automata",
|
|
534
|
-
"regex-syntax",
|
|
539
|
+
"regex-automata 0.4.9",
|
|
540
|
+
"regex-syntax 0.8.5",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "regex-automata"
|
|
545
|
+
version = "0.1.10"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"regex-syntax 0.6.29",
|
|
535
550
|
]
|
|
536
551
|
|
|
537
552
|
[[package]]
|
|
538
553
|
name = "regex-automata"
|
|
539
|
-
version = "0.4.
|
|
554
|
+
version = "0.4.9"
|
|
540
555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
556
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
542
557
|
dependencies = [
|
|
543
558
|
"aho-corasick",
|
|
544
559
|
"memchr",
|
|
545
|
-
"regex-syntax",
|
|
560
|
+
"regex-syntax 0.8.5",
|
|
546
561
|
]
|
|
547
562
|
|
|
548
563
|
[[package]]
|
|
549
564
|
name = "regex-syntax"
|
|
550
|
-
version = "0.
|
|
565
|
+
version = "0.6.29"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "regex-syntax"
|
|
571
|
+
version = "0.8.5"
|
|
551
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
573
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
553
574
|
|
|
554
575
|
[[package]]
|
|
555
576
|
name = "ring"
|
|
@@ -562,32 +583,26 @@ dependencies = [
|
|
|
562
583
|
"getrandom",
|
|
563
584
|
"libc",
|
|
564
585
|
"untrusted",
|
|
565
|
-
"windows-sys
|
|
586
|
+
"windows-sys",
|
|
566
587
|
]
|
|
567
588
|
|
|
568
589
|
[[package]]
|
|
569
590
|
name = "rustc-hash"
|
|
570
|
-
version = "2.1.
|
|
591
|
+
version = "2.1.1"
|
|
571
592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
-
checksum = "
|
|
593
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
573
594
|
|
|
574
595
|
[[package]]
|
|
575
|
-
name = "
|
|
576
|
-
version = "
|
|
596
|
+
name = "rustls-pki-types"
|
|
597
|
+
version = "1.11.0"
|
|
577
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
-
checksum = "
|
|
579
|
-
dependencies = [
|
|
580
|
-
"semver",
|
|
581
|
-
]
|
|
599
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
582
600
|
|
|
583
601
|
[[package]]
|
|
584
|
-
name = "
|
|
585
|
-
version = "1.
|
|
602
|
+
name = "ryu"
|
|
603
|
+
version = "1.0.20"
|
|
586
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
-
checksum = "
|
|
588
|
-
dependencies = [
|
|
589
|
-
"zeroize",
|
|
590
|
-
]
|
|
605
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
591
606
|
|
|
592
607
|
[[package]]
|
|
593
608
|
name = "scopeguard"
|
|
@@ -595,12 +610,6 @@ version = "1.2.0"
|
|
|
595
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
611
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
597
612
|
|
|
598
|
-
[[package]]
|
|
599
|
-
name = "semver"
|
|
600
|
-
version = "1.0.28"
|
|
601
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
-
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
603
|
-
|
|
604
613
|
[[package]]
|
|
605
614
|
name = "seq-macro"
|
|
606
615
|
version = "0.3.6"
|
|
@@ -609,44 +618,34 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
609
618
|
|
|
610
619
|
[[package]]
|
|
611
620
|
name = "serde"
|
|
612
|
-
version = "1.0.
|
|
621
|
+
version = "1.0.219"
|
|
613
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
615
|
-
dependencies = [
|
|
616
|
-
"serde_core",
|
|
617
|
-
]
|
|
618
|
-
|
|
619
|
-
[[package]]
|
|
620
|
-
name = "serde_core"
|
|
621
|
-
version = "1.0.228"
|
|
622
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
623
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
624
624
|
dependencies = [
|
|
625
625
|
"serde_derive",
|
|
626
626
|
]
|
|
627
627
|
|
|
628
628
|
[[package]]
|
|
629
629
|
name = "serde_derive"
|
|
630
|
-
version = "1.0.
|
|
630
|
+
version = "1.0.219"
|
|
631
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
-
checksum = "
|
|
632
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
633
633
|
dependencies = [
|
|
634
634
|
"proc-macro2",
|
|
635
635
|
"quote",
|
|
636
|
-
"syn 2.0.
|
|
636
|
+
"syn 2.0.101",
|
|
637
637
|
]
|
|
638
638
|
|
|
639
639
|
[[package]]
|
|
640
640
|
name = "serde_json"
|
|
641
|
-
version = "1.0.
|
|
641
|
+
version = "1.0.140"
|
|
642
642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
-
checksum = "
|
|
643
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
644
644
|
dependencies = [
|
|
645
645
|
"itoa",
|
|
646
646
|
"memchr",
|
|
647
|
+
"ryu",
|
|
647
648
|
"serde",
|
|
648
|
-
"serde_core",
|
|
649
|
-
"zmij",
|
|
650
649
|
]
|
|
651
650
|
|
|
652
651
|
[[package]]
|
|
@@ -660,9 +659,9 @@ dependencies = [
|
|
|
660
659
|
|
|
661
660
|
[[package]]
|
|
662
661
|
name = "shell-words"
|
|
663
|
-
version = "1.1.
|
|
662
|
+
version = "1.1.0"
|
|
664
663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
-
checksum = "
|
|
664
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
666
665
|
|
|
667
666
|
[[package]]
|
|
668
667
|
name = "shlex"
|
|
@@ -672,15 +671,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
672
671
|
|
|
673
672
|
[[package]]
|
|
674
673
|
name = "smallvec"
|
|
675
|
-
version = "1.15.
|
|
676
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
-
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
678
|
-
|
|
679
|
-
[[package]]
|
|
680
|
-
name = "symlink"
|
|
681
|
-
version = "0.1.0"
|
|
674
|
+
version = "1.15.0"
|
|
682
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
-
checksum = "
|
|
676
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
684
677
|
|
|
685
678
|
[[package]]
|
|
686
679
|
name = "syn"
|
|
@@ -695,9 +688,9 @@ dependencies = [
|
|
|
695
688
|
|
|
696
689
|
[[package]]
|
|
697
690
|
name = "syn"
|
|
698
|
-
version = "2.0.
|
|
691
|
+
version = "2.0.101"
|
|
699
692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
-
checksum = "
|
|
693
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
701
694
|
dependencies = [
|
|
702
695
|
"proc-macro2",
|
|
703
696
|
"quote",
|
|
@@ -706,59 +699,80 @@ dependencies = [
|
|
|
706
699
|
|
|
707
700
|
[[package]]
|
|
708
701
|
name = "thiserror"
|
|
709
|
-
version = "
|
|
702
|
+
version = "1.0.69"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"thiserror-impl 1.0.69",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "thiserror"
|
|
711
|
+
version = "2.0.12"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"thiserror-impl 2.0.12",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "thiserror-impl"
|
|
720
|
+
version = "1.0.69"
|
|
710
721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
-
checksum = "
|
|
722
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
712
723
|
dependencies = [
|
|
713
|
-
"
|
|
724
|
+
"proc-macro2",
|
|
725
|
+
"quote",
|
|
726
|
+
"syn 2.0.101",
|
|
714
727
|
]
|
|
715
728
|
|
|
716
729
|
[[package]]
|
|
717
730
|
name = "thiserror-impl"
|
|
718
|
-
version = "2.0.
|
|
731
|
+
version = "2.0.12"
|
|
719
732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
-
checksum = "
|
|
733
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
721
734
|
dependencies = [
|
|
722
735
|
"proc-macro2",
|
|
723
736
|
"quote",
|
|
724
|
-
"syn 2.0.
|
|
737
|
+
"syn 2.0.101",
|
|
725
738
|
]
|
|
726
739
|
|
|
727
740
|
[[package]]
|
|
728
741
|
name = "thread_local"
|
|
729
|
-
version = "1.1.
|
|
742
|
+
version = "1.1.8"
|
|
730
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
-
checksum = "
|
|
744
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
732
745
|
dependencies = [
|
|
733
746
|
"cfg-if",
|
|
747
|
+
"once_cell",
|
|
734
748
|
]
|
|
735
749
|
|
|
736
750
|
[[package]]
|
|
737
751
|
name = "time"
|
|
738
|
-
version = "0.3.
|
|
752
|
+
version = "0.3.41"
|
|
739
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
-
checksum = "
|
|
754
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
741
755
|
dependencies = [
|
|
742
756
|
"deranged",
|
|
743
757
|
"itoa",
|
|
744
758
|
"num-conv",
|
|
745
759
|
"powerfmt",
|
|
746
|
-
"
|
|
760
|
+
"serde",
|
|
747
761
|
"time-core",
|
|
748
762
|
"time-macros",
|
|
749
763
|
]
|
|
750
764
|
|
|
751
765
|
[[package]]
|
|
752
766
|
name = "time-core"
|
|
753
|
-
version = "0.1.
|
|
767
|
+
version = "0.1.4"
|
|
754
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
-
checksum = "
|
|
769
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
756
770
|
|
|
757
771
|
[[package]]
|
|
758
772
|
name = "time-macros"
|
|
759
|
-
version = "0.2.
|
|
773
|
+
version = "0.2.22"
|
|
760
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
775
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
762
776
|
dependencies = [
|
|
763
777
|
"num-conv",
|
|
764
778
|
"time-core",
|
|
@@ -766,9 +780,9 @@ dependencies = [
|
|
|
766
780
|
|
|
767
781
|
[[package]]
|
|
768
782
|
name = "tracing"
|
|
769
|
-
version = "0.1.
|
|
783
|
+
version = "0.1.41"
|
|
770
784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "
|
|
785
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
772
786
|
dependencies = [
|
|
773
787
|
"pin-project-lite",
|
|
774
788
|
"tracing-attributes",
|
|
@@ -777,33 +791,32 @@ dependencies = [
|
|
|
777
791
|
|
|
778
792
|
[[package]]
|
|
779
793
|
name = "tracing-appender"
|
|
780
|
-
version = "0.2.
|
|
794
|
+
version = "0.2.3"
|
|
781
795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
-
checksum = "
|
|
796
|
+
checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
|
|
783
797
|
dependencies = [
|
|
784
798
|
"crossbeam-channel",
|
|
785
|
-
"
|
|
786
|
-
"thiserror",
|
|
799
|
+
"thiserror 1.0.69",
|
|
787
800
|
"time",
|
|
788
801
|
"tracing-subscriber",
|
|
789
802
|
]
|
|
790
803
|
|
|
791
804
|
[[package]]
|
|
792
805
|
name = "tracing-attributes"
|
|
793
|
-
version = "0.1.
|
|
806
|
+
version = "0.1.28"
|
|
794
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
808
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
796
809
|
dependencies = [
|
|
797
810
|
"proc-macro2",
|
|
798
811
|
"quote",
|
|
799
|
-
"syn 2.0.
|
|
812
|
+
"syn 2.0.101",
|
|
800
813
|
]
|
|
801
814
|
|
|
802
815
|
[[package]]
|
|
803
816
|
name = "tracing-core"
|
|
804
|
-
version = "0.1.
|
|
817
|
+
version = "0.1.33"
|
|
805
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
-
checksum = "
|
|
819
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
807
820
|
dependencies = [
|
|
808
821
|
"once_cell",
|
|
809
822
|
"valuable",
|
|
@@ -832,14 +845,14 @@ dependencies = [
|
|
|
832
845
|
|
|
833
846
|
[[package]]
|
|
834
847
|
name = "tracing-subscriber"
|
|
835
|
-
version = "0.3.
|
|
848
|
+
version = "0.3.19"
|
|
836
849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
-
checksum = "
|
|
850
|
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
|
838
851
|
dependencies = [
|
|
839
852
|
"matchers",
|
|
840
853
|
"nu-ansi-term",
|
|
841
854
|
"once_cell",
|
|
842
|
-
"regex
|
|
855
|
+
"regex",
|
|
843
856
|
"serde",
|
|
844
857
|
"serde_json",
|
|
845
858
|
"sharded-slab",
|
|
@@ -853,9 +866,9 @@ dependencies = [
|
|
|
853
866
|
|
|
854
867
|
[[package]]
|
|
855
868
|
name = "unicode-ident"
|
|
856
|
-
version = "1.0.
|
|
869
|
+
version = "1.0.18"
|
|
857
870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
-
checksum = "
|
|
871
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
859
872
|
|
|
860
873
|
[[package]]
|
|
861
874
|
name = "unicode-xid"
|
|
@@ -877,9 +890,9 @@ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
|
877
890
|
|
|
878
891
|
[[package]]
|
|
879
892
|
name = "wasi"
|
|
880
|
-
version = "0.11.
|
|
893
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
881
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "
|
|
895
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
883
896
|
|
|
884
897
|
[[package]]
|
|
885
898
|
name = "winapi"
|
|
@@ -903,12 +916,6 @@ version = "0.4.0"
|
|
|
903
916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
917
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
905
918
|
|
|
906
|
-
[[package]]
|
|
907
|
-
name = "windows-link"
|
|
908
|
-
version = "0.2.1"
|
|
909
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
-
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
911
|
-
|
|
912
919
|
[[package]]
|
|
913
920
|
name = "windows-sys"
|
|
914
921
|
version = "0.52.0"
|
|
@@ -918,15 +925,6 @@ dependencies = [
|
|
|
918
925
|
"windows-targets",
|
|
919
926
|
]
|
|
920
927
|
|
|
921
|
-
[[package]]
|
|
922
|
-
name = "windows-sys"
|
|
923
|
-
version = "0.61.2"
|
|
924
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
-
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
926
|
-
dependencies = [
|
|
927
|
-
"windows-link",
|
|
928
|
-
]
|
|
929
|
-
|
|
930
928
|
[[package]]
|
|
931
929
|
name = "windows-targets"
|
|
932
930
|
version = "0.52.6"
|
|
@@ -999,19 +997,3 @@ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
|
|
|
999
997
|
dependencies = [
|
|
1000
998
|
"time",
|
|
1001
999
|
]
|
|
1002
|
-
|
|
1003
|
-
[[package]]
|
|
1004
|
-
name = "zeroize"
|
|
1005
|
-
version = "1.8.2"
|
|
1006
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
-
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1008
|
-
|
|
1009
|
-
[[package]]
|
|
1010
|
-
name = "zmij"
|
|
1011
|
-
version = "1.0.21"
|
|
1012
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
-
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
1014
|
-
|
|
1015
|
-
[[patch.unused]]
|
|
1016
|
-
name = "rb-sys-build"
|
|
1017
|
-
version = "0.9.124"
|