prometheus-client-mmap 1.2.9-arm64-darwin → 1.2.10-arm64-darwin
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 +101 -120
- data/ext/fast_mmaped_file_rs/Cargo.lock +765 -0
- data/ext/fast_mmaped_file_rs/Cargo.toml +15 -15
- data/ext/fast_mmaped_file_rs/extconf.rb +1 -0
- data/lib/3.1/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.2/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.3/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.4/fast_mmaped_file_rs.bundle +0 -0
- data/lib/prometheus/client/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a78cfcbe2886fcf3ca4f48e93b386b74e1e69e365a557f83c0178137693d9f6d
|
4
|
+
data.tar.gz: 6b77c5fab0619f14f8263af61e29a5a2aa1986b4b39bc3a9ced439e67beaec93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7688c284af92b679ec63f62b5daf93fecd68ad60cd9efbc96474eda428e9a6b2296cdfb47fa2309baabe7ba691048c2cf08ea73706a2f6c8e8ae31b507a3e61b
|
7
|
+
data.tar.gz: 2cb33d93faae055b61ca66547c4714a0c27fe690e7d53974c2590858680265cbdd6b37d3f9d0e2e1465e47394018bfaadf225faec210e96d7be92f806e599f01
|
data/Cargo.lock
CHANGED
@@ -2,18 +2,6 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 3
|
4
4
|
|
5
|
-
[[package]]
|
6
|
-
name = "ahash"
|
7
|
-
version = "0.8.11"
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
10
|
-
dependencies = [
|
11
|
-
"cfg-if",
|
12
|
-
"once_cell",
|
13
|
-
"version_check",
|
14
|
-
"zerocopy",
|
15
|
-
]
|
16
|
-
|
17
5
|
[[package]]
|
18
6
|
name = "aho-corasick"
|
19
7
|
version = "1.1.3"
|
@@ -41,7 +29,7 @@ version = "0.69.5"
|
|
41
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
42
30
|
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
43
31
|
dependencies = [
|
44
|
-
"bitflags 2.
|
32
|
+
"bitflags 2.9.0",
|
45
33
|
"cexpr",
|
46
34
|
"clang-sys",
|
47
35
|
"itertools",
|
@@ -63,9 +51,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
63
51
|
|
64
52
|
[[package]]
|
65
53
|
name = "bitflags"
|
66
|
-
version = "2.
|
54
|
+
version = "2.9.0"
|
67
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
-
checksum = "
|
56
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
69
57
|
|
70
58
|
[[package]]
|
71
59
|
name = "block-buffer"
|
@@ -78,21 +66,15 @@ dependencies = [
|
|
78
66
|
|
79
67
|
[[package]]
|
80
68
|
name = "bstr"
|
81
|
-
version = "1.
|
69
|
+
version = "1.12.0"
|
82
70
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
83
|
-
checksum = "
|
71
|
+
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
|
84
72
|
dependencies = [
|
85
73
|
"memchr",
|
86
74
|
"regex-automata",
|
87
75
|
"serde",
|
88
76
|
]
|
89
77
|
|
90
|
-
[[package]]
|
91
|
-
name = "byteorder"
|
92
|
-
version = "1.5.0"
|
93
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
-
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
95
|
-
|
96
78
|
[[package]]
|
97
79
|
name = "cexpr"
|
98
80
|
version = "0.6.0"
|
@@ -150,15 +132,21 @@ dependencies = [
|
|
150
132
|
|
151
133
|
[[package]]
|
152
134
|
name = "either"
|
153
|
-
version = "1.
|
135
|
+
version = "1.15.0"
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
138
|
+
|
139
|
+
[[package]]
|
140
|
+
name = "equivalent"
|
141
|
+
version = "1.0.2"
|
154
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
-
checksum = "
|
143
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
156
144
|
|
157
145
|
[[package]]
|
158
146
|
name = "errno"
|
159
|
-
version = "0.3.
|
147
|
+
version = "0.3.11"
|
160
148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
161
|
-
checksum = "
|
149
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
162
150
|
dependencies = [
|
163
151
|
"libc",
|
164
152
|
"windows-sys",
|
@@ -192,6 +180,12 @@ version = "2.3.0"
|
|
192
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
181
|
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
194
182
|
|
183
|
+
[[package]]
|
184
|
+
name = "foldhash"
|
185
|
+
version = "0.1.5"
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
188
|
+
|
195
189
|
[[package]]
|
196
190
|
name = "generic-array"
|
197
191
|
version = "0.14.7"
|
@@ -204,25 +198,14 @@ dependencies = [
|
|
204
198
|
|
205
199
|
[[package]]
|
206
200
|
name = "getrandom"
|
207
|
-
version = "0.2
|
208
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
209
|
-
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
210
|
-
dependencies = [
|
211
|
-
"cfg-if",
|
212
|
-
"libc",
|
213
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
214
|
-
]
|
215
|
-
|
216
|
-
[[package]]
|
217
|
-
name = "getrandom"
|
218
|
-
version = "0.3.1"
|
201
|
+
version = "0.3.2"
|
219
202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
220
|
-
checksum = "
|
203
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
221
204
|
dependencies = [
|
222
205
|
"cfg-if",
|
223
206
|
"libc",
|
224
|
-
"
|
225
|
-
"
|
207
|
+
"r-efi",
|
208
|
+
"wasi",
|
226
209
|
]
|
227
210
|
|
228
211
|
[[package]]
|
@@ -233,19 +216,20 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
233
216
|
|
234
217
|
[[package]]
|
235
218
|
name = "hashbrown"
|
236
|
-
version = "0.
|
219
|
+
version = "0.15.3"
|
237
220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
238
|
-
checksum = "
|
221
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
239
222
|
dependencies = [
|
240
|
-
"ahash",
|
241
223
|
"allocator-api2",
|
224
|
+
"equivalent",
|
225
|
+
"foldhash",
|
242
226
|
]
|
243
227
|
|
244
228
|
[[package]]
|
245
229
|
name = "indoc"
|
246
|
-
version = "2.0.
|
230
|
+
version = "2.0.6"
|
247
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
-
checksum = "
|
232
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
249
233
|
|
250
234
|
[[package]]
|
251
235
|
name = "itertools"
|
@@ -258,9 +242,9 @@ dependencies = [
|
|
258
242
|
|
259
243
|
[[package]]
|
260
244
|
name = "itoa"
|
261
|
-
version = "1.0.
|
245
|
+
version = "1.0.15"
|
262
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
263
|
-
checksum = "
|
247
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
264
248
|
|
265
249
|
[[package]]
|
266
250
|
name = "lazy_static"
|
@@ -276,9 +260,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
276
260
|
|
277
261
|
[[package]]
|
278
262
|
name = "libc"
|
279
|
-
version = "0.2.
|
263
|
+
version = "0.2.172"
|
280
264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "
|
265
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
282
266
|
|
283
267
|
[[package]]
|
284
268
|
name = "libloading"
|
@@ -292,9 +276,9 @@ dependencies = [
|
|
292
276
|
|
293
277
|
[[package]]
|
294
278
|
name = "linux-raw-sys"
|
295
|
-
version = "0.4
|
279
|
+
version = "0.9.4"
|
296
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
-
checksum = "
|
281
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
298
282
|
|
299
283
|
[[package]]
|
300
284
|
name = "magnus"
|
@@ -375,9 +359,9 @@ dependencies = [
|
|
375
359
|
|
376
360
|
[[package]]
|
377
361
|
name = "once_cell"
|
378
|
-
version = "1.
|
362
|
+
version = "1.21.3"
|
379
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
-
checksum = "
|
364
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
381
365
|
|
382
366
|
[[package]]
|
383
367
|
name = "pin-utils"
|
@@ -387,47 +371,52 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
387
371
|
|
388
372
|
[[package]]
|
389
373
|
name = "ppv-lite86"
|
390
|
-
version = "0.2.
|
374
|
+
version = "0.2.21"
|
391
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
392
|
-
checksum = "
|
376
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
393
377
|
dependencies = [
|
394
378
|
"zerocopy",
|
395
379
|
]
|
396
380
|
|
397
381
|
[[package]]
|
398
382
|
name = "proc-macro2"
|
399
|
-
version = "1.0.
|
383
|
+
version = "1.0.95"
|
400
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
-
checksum = "
|
385
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
402
386
|
dependencies = [
|
403
387
|
"unicode-ident",
|
404
388
|
]
|
405
389
|
|
406
390
|
[[package]]
|
407
391
|
name = "quote"
|
408
|
-
version = "1.0.
|
392
|
+
version = "1.0.40"
|
409
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
410
|
-
checksum = "
|
394
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
411
395
|
dependencies = [
|
412
396
|
"proc-macro2",
|
413
397
|
]
|
414
398
|
|
399
|
+
[[package]]
|
400
|
+
name = "r-efi"
|
401
|
+
version = "5.2.0"
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
403
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
404
|
+
|
415
405
|
[[package]]
|
416
406
|
name = "rand"
|
417
|
-
version = "0.
|
407
|
+
version = "0.9.1"
|
418
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
419
|
-
checksum = "
|
409
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
420
410
|
dependencies = [
|
421
|
-
"libc",
|
422
411
|
"rand_chacha",
|
423
412
|
"rand_core",
|
424
413
|
]
|
425
414
|
|
426
415
|
[[package]]
|
427
416
|
name = "rand_chacha"
|
428
|
-
version = "0.
|
417
|
+
version = "0.9.0"
|
429
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
-
checksum = "
|
419
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
431
420
|
dependencies = [
|
432
421
|
"ppv-lite86",
|
433
422
|
"rand_core",
|
@@ -435,27 +424,27 @@ dependencies = [
|
|
435
424
|
|
436
425
|
[[package]]
|
437
426
|
name = "rand_core"
|
438
|
-
version = "0.
|
427
|
+
version = "0.9.3"
|
439
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
-
checksum = "
|
429
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
441
430
|
dependencies = [
|
442
|
-
"getrandom
|
431
|
+
"getrandom",
|
443
432
|
]
|
444
433
|
|
445
434
|
[[package]]
|
446
435
|
name = "rb-sys"
|
447
|
-
version = "0.9.
|
436
|
+
version = "0.9.115"
|
448
437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
-
checksum = "
|
438
|
+
checksum = "99ca6726be0eca74687047fed7dcbc2d509571f3962e190c343ac1eb40e482b3"
|
450
439
|
dependencies = [
|
451
440
|
"rb-sys-build",
|
452
441
|
]
|
453
442
|
|
454
443
|
[[package]]
|
455
444
|
name = "rb-sys-build"
|
456
|
-
version = "0.9.
|
445
|
+
version = "0.9.115"
|
457
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
458
|
-
checksum = "
|
447
|
+
checksum = "9f2390cfc87b7513656656faad6567291e581542d3ec41dd0a2bf381896e0880"
|
459
448
|
dependencies = [
|
460
449
|
"bindgen",
|
461
450
|
"lazy_static",
|
@@ -515,11 +504,11 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
515
504
|
|
516
505
|
[[package]]
|
517
506
|
name = "rustix"
|
518
|
-
version = "0.
|
507
|
+
version = "1.0.7"
|
519
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
-
checksum = "
|
509
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
521
510
|
dependencies = [
|
522
|
-
"bitflags 2.
|
511
|
+
"bitflags 2.9.0",
|
523
512
|
"errno",
|
524
513
|
"libc",
|
525
514
|
"linux-raw-sys",
|
@@ -528,30 +517,30 @@ dependencies = [
|
|
528
517
|
|
529
518
|
[[package]]
|
530
519
|
name = "ryu"
|
531
|
-
version = "1.0.
|
520
|
+
version = "1.0.20"
|
532
521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
-
checksum = "
|
522
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
534
523
|
|
535
524
|
[[package]]
|
536
525
|
name = "seq-macro"
|
537
|
-
version = "0.3.
|
526
|
+
version = "0.3.6"
|
538
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
539
|
-
checksum = "
|
528
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
540
529
|
|
541
530
|
[[package]]
|
542
531
|
name = "serde"
|
543
|
-
version = "1.0.
|
532
|
+
version = "1.0.219"
|
544
533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
545
|
-
checksum = "
|
534
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
546
535
|
dependencies = [
|
547
536
|
"serde_derive",
|
548
537
|
]
|
549
538
|
|
550
539
|
[[package]]
|
551
540
|
name = "serde_derive"
|
552
|
-
version = "1.0.
|
541
|
+
version = "1.0.219"
|
553
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
-
checksum = "
|
543
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
555
544
|
dependencies = [
|
556
545
|
"proc-macro2",
|
557
546
|
"quote",
|
@@ -560,9 +549,9 @@ dependencies = [
|
|
560
549
|
|
561
550
|
[[package]]
|
562
551
|
name = "serde_json"
|
563
|
-
version = "1.0.
|
552
|
+
version = "1.0.140"
|
564
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
565
|
-
checksum = "
|
554
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
566
555
|
dependencies = [
|
567
556
|
"itoa",
|
568
557
|
"memchr",
|
@@ -572,9 +561,9 @@ dependencies = [
|
|
572
561
|
|
573
562
|
[[package]]
|
574
563
|
name = "sha2"
|
575
|
-
version = "0.10.
|
564
|
+
version = "0.10.9"
|
576
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
-
checksum = "
|
566
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
578
567
|
dependencies = [
|
579
568
|
"cfg-if",
|
580
569
|
"cpufeatures",
|
@@ -595,18 +584,18 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
595
584
|
|
596
585
|
[[package]]
|
597
586
|
name = "smallvec"
|
598
|
-
version = "1.
|
587
|
+
version = "1.15.0"
|
599
588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
-
checksum = "
|
589
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
601
590
|
dependencies = [
|
602
591
|
"serde",
|
603
592
|
]
|
604
593
|
|
605
594
|
[[package]]
|
606
595
|
name = "syn"
|
607
|
-
version = "2.0.
|
596
|
+
version = "2.0.101"
|
608
597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
-
checksum = "
|
598
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
610
599
|
dependencies = [
|
611
600
|
"proc-macro2",
|
612
601
|
"quote",
|
@@ -615,13 +604,12 @@ dependencies = [
|
|
615
604
|
|
616
605
|
[[package]]
|
617
606
|
name = "tempfile"
|
618
|
-
version = "3.
|
607
|
+
version = "3.19.1"
|
619
608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
-
checksum = "
|
609
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
621
610
|
dependencies = [
|
622
|
-
"cfg-if",
|
623
611
|
"fastrand",
|
624
|
-
"getrandom
|
612
|
+
"getrandom",
|
625
613
|
"once_cell",
|
626
614
|
"rustix",
|
627
615
|
"windows-sys",
|
@@ -629,18 +617,18 @@ dependencies = [
|
|
629
617
|
|
630
618
|
[[package]]
|
631
619
|
name = "thiserror"
|
632
|
-
version = "2.0.
|
620
|
+
version = "2.0.12"
|
633
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
-
checksum = "
|
622
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
635
623
|
dependencies = [
|
636
624
|
"thiserror-impl",
|
637
625
|
]
|
638
626
|
|
639
627
|
[[package]]
|
640
628
|
name = "thiserror-impl"
|
641
|
-
version = "2.0.
|
629
|
+
version = "2.0.12"
|
642
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
643
|
-
checksum = "
|
631
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
644
632
|
dependencies = [
|
645
633
|
"proc-macro2",
|
646
634
|
"quote",
|
@@ -649,15 +637,15 @@ dependencies = [
|
|
649
637
|
|
650
638
|
[[package]]
|
651
639
|
name = "typenum"
|
652
|
-
version = "1.
|
640
|
+
version = "1.18.0"
|
653
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
654
|
-
checksum = "
|
642
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
655
643
|
|
656
644
|
[[package]]
|
657
645
|
name = "unicode-ident"
|
658
|
-
version = "1.0.
|
646
|
+
version = "1.0.18"
|
659
647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
660
|
-
checksum = "
|
648
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
661
649
|
|
662
650
|
[[package]]
|
663
651
|
name = "version_check"
|
@@ -667,15 +655,9 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
667
655
|
|
668
656
|
[[package]]
|
669
657
|
name = "wasi"
|
670
|
-
version = "0.
|
671
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
672
|
-
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
673
|
-
|
674
|
-
[[package]]
|
675
|
-
name = "wasi"
|
676
|
-
version = "0.13.3+wasi-0.2.2"
|
658
|
+
version = "0.14.2+wasi-0.2.4"
|
677
659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
-
checksum = "
|
660
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
679
661
|
dependencies = [
|
680
662
|
"wit-bindgen-rt",
|
681
663
|
]
|
@@ -755,28 +737,27 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
755
737
|
|
756
738
|
[[package]]
|
757
739
|
name = "wit-bindgen-rt"
|
758
|
-
version = "0.
|
740
|
+
version = "0.39.0"
|
759
741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
760
|
-
checksum = "
|
742
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
761
743
|
dependencies = [
|
762
|
-
"bitflags 2.
|
744
|
+
"bitflags 2.9.0",
|
763
745
|
]
|
764
746
|
|
765
747
|
[[package]]
|
766
748
|
name = "zerocopy"
|
767
|
-
version = "0.
|
749
|
+
version = "0.8.25"
|
768
750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
769
|
-
checksum = "
|
751
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
770
752
|
dependencies = [
|
771
|
-
"byteorder",
|
772
753
|
"zerocopy-derive",
|
773
754
|
]
|
774
755
|
|
775
756
|
[[package]]
|
776
757
|
name = "zerocopy-derive"
|
777
|
-
version = "0.
|
758
|
+
version = "0.8.25"
|
778
759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
779
|
-
checksum = "
|
760
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
780
761
|
dependencies = [
|
781
762
|
"proc-macro2",
|
782
763
|
"quote",
|