prosody 0.2.1 → 0.4.0
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/.release-please-manifest.json +1 -1
- data/ARCHITECTURE.md +12 -2
- data/CHANGELOG.md +20 -0
- data/Cargo.lock +586 -450
- data/Cargo.toml +6 -6
- data/README.md +211 -20
- data/Rakefile +11 -1
- data/examples/keyed_state.rb +58 -0
- data/examples/keyed_state.rbs +18 -0
- data/examples/keyed_state_windowing.rb +47 -0
- data/examples/keyed_state_windowing.rbs +16 -0
- data/ext/prosody/Cargo.toml +1 -1
- data/ext/prosody/src/client/config.rs +387 -19
- data/ext/prosody/src/handler/context.rs +146 -5
- data/ext/prosody/src/handler/message.rs +17 -0
- data/ext/prosody/src/handler/mod.rs +4 -2
- data/ext/prosody/src/handler/state.rs +1035 -0
- data/ext/prosody/src/lib.rs +1 -0
- data/lib/prosody/configuration.rb +26 -0
- data/lib/prosody/handler.rb +6 -2
- data/lib/prosody/native_stubs.rb +381 -6
- data/lib/prosody/state.rb +693 -0
- data/lib/prosody/version.rb +1 -1
- data/lib/prosody.rb +5 -0
- data/release-please-config.json +4 -0
- data/sig/configuration.rbs +24 -1
- data/sig/handler.rbs +7 -3
- data/sig/processor.rbs +28 -12
- data/sig/prosody.rbs +11 -6
- data/sig/sentry.rbs +6 -0
- data/sig/state.rbs +272 -0
- data/steep_expectations.yml +47 -0
- data/typecheck/payload_types.rb +43 -0
- data/typecheck/payload_types.rbs +20 -0
- data/typecheck_negative/payload_types.rb +16 -0
- data/typecheck_negative/payload_types.rbs +8 -0
- metadata +24 -11
data/Cargo.lock
CHANGED
|
@@ -41,15 +41,15 @@ dependencies = [
|
|
|
41
41
|
|
|
42
42
|
[[package]]
|
|
43
43
|
name = "anyhow"
|
|
44
|
-
version = "1.0.
|
|
44
|
+
version = "1.0.103"
|
|
45
45
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
-
checksum = "
|
|
46
|
+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
|
|
47
47
|
|
|
48
48
|
[[package]]
|
|
49
49
|
name = "arc-swap"
|
|
50
|
-
version = "1.9.
|
|
50
|
+
version = "1.9.2"
|
|
51
51
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
-
checksum = "
|
|
52
|
+
checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
|
|
53
53
|
dependencies = [
|
|
54
54
|
"rustversion",
|
|
55
55
|
]
|
|
@@ -101,9 +101,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
101
101
|
|
|
102
102
|
[[package]]
|
|
103
103
|
name = "autocfg"
|
|
104
|
-
version = "1.5.
|
|
104
|
+
version = "1.5.1"
|
|
105
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
-
checksum = "
|
|
106
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
107
107
|
|
|
108
108
|
[[package]]
|
|
109
109
|
name = "axum"
|
|
@@ -205,7 +205,7 @@ dependencies = [
|
|
|
205
205
|
"quote",
|
|
206
206
|
"regex",
|
|
207
207
|
"rustc-hash",
|
|
208
|
-
"shlex",
|
|
208
|
+
"shlex 1.3.0",
|
|
209
209
|
"syn",
|
|
210
210
|
]
|
|
211
211
|
|
|
@@ -244,43 +244,34 @@ dependencies = [
|
|
|
244
244
|
|
|
245
245
|
[[package]]
|
|
246
246
|
name = "bitflags"
|
|
247
|
-
version = "2.
|
|
247
|
+
version = "2.13.1"
|
|
248
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
250
|
-
|
|
251
|
-
[[package]]
|
|
252
|
-
name = "block-buffer"
|
|
253
|
-
version = "0.10.4"
|
|
254
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
256
|
-
dependencies = [
|
|
257
|
-
"generic-array",
|
|
258
|
-
]
|
|
249
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
259
250
|
|
|
260
251
|
[[package]]
|
|
261
252
|
name = "block-buffer"
|
|
262
|
-
version = "0.12.
|
|
253
|
+
version = "0.12.1"
|
|
263
254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
-
checksum = "
|
|
255
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
265
256
|
dependencies = [
|
|
266
257
|
"hybrid-array",
|
|
267
258
|
]
|
|
268
259
|
|
|
269
260
|
[[package]]
|
|
270
261
|
name = "bstr"
|
|
271
|
-
version = "1.
|
|
262
|
+
version = "1.13.0"
|
|
272
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "
|
|
264
|
+
checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
|
|
274
265
|
dependencies = [
|
|
275
266
|
"memchr",
|
|
276
|
-
"
|
|
267
|
+
"serde_core",
|
|
277
268
|
]
|
|
278
269
|
|
|
279
270
|
[[package]]
|
|
280
271
|
name = "bumpalo"
|
|
281
|
-
version = "3.20.
|
|
272
|
+
version = "3.20.3"
|
|
282
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
-
checksum = "
|
|
274
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
284
275
|
|
|
285
276
|
[[package]]
|
|
286
277
|
name = "byteorder"
|
|
@@ -288,20 +279,34 @@ version = "1.5.0"
|
|
|
288
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
280
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
290
281
|
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "byteorder-lite"
|
|
284
|
+
version = "0.1.0"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
287
|
+
|
|
291
288
|
[[package]]
|
|
292
289
|
name = "bytes"
|
|
293
|
-
version = "1.
|
|
290
|
+
version = "1.12.1"
|
|
294
291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
-
checksum = "
|
|
292
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "byteview"
|
|
296
|
+
version = "0.10.1"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "1c53ba0f290bfc610084c05582d9c5d421662128fc69f4bf236707af6fd321b9"
|
|
296
299
|
|
|
297
300
|
[[package]]
|
|
298
301
|
name = "cc"
|
|
299
|
-
version = "1.2.
|
|
302
|
+
version = "1.2.67"
|
|
300
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
-
checksum = "
|
|
304
|
+
checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
|
|
302
305
|
dependencies = [
|
|
303
306
|
"find-msvc-tools",
|
|
304
|
-
"
|
|
307
|
+
"jobserver",
|
|
308
|
+
"libc",
|
|
309
|
+
"shlex 2.0.1",
|
|
305
310
|
]
|
|
306
311
|
|
|
307
312
|
[[package]]
|
|
@@ -321,9 +326,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
321
326
|
|
|
322
327
|
[[package]]
|
|
323
328
|
name = "chacha20"
|
|
324
|
-
version = "0.10.
|
|
329
|
+
version = "0.10.1"
|
|
325
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
-
checksum = "
|
|
331
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
327
332
|
dependencies = [
|
|
328
333
|
"cfg-if",
|
|
329
334
|
"cpufeatures 0.3.0",
|
|
@@ -332,9 +337,9 @@ dependencies = [
|
|
|
332
337
|
|
|
333
338
|
[[package]]
|
|
334
339
|
name = "chrono"
|
|
335
|
-
version = "0.4.
|
|
340
|
+
version = "0.4.45"
|
|
336
341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
-
checksum = "
|
|
342
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
338
343
|
dependencies = [
|
|
339
344
|
"iana-time-zone",
|
|
340
345
|
"js-sys",
|
|
@@ -363,11 +368,17 @@ dependencies = [
|
|
|
363
368
|
"cc",
|
|
364
369
|
]
|
|
365
370
|
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "compare"
|
|
373
|
+
version = "0.0.6"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "ea0095f6103c2a8b44acd6fd15960c801dafebf02e21940360833e0673f48ba7"
|
|
376
|
+
|
|
366
377
|
[[package]]
|
|
367
378
|
name = "const-hex"
|
|
368
|
-
version = "1.19.
|
|
379
|
+
version = "1.19.1"
|
|
369
380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
-
checksum = "
|
|
381
|
+
checksum = "33e2a781ebdf4467d1428dc4593067825fb646f6871475098d8577421af73558"
|
|
371
382
|
dependencies = [
|
|
372
383
|
"cfg-if",
|
|
373
384
|
"cpufeatures 0.2.17",
|
|
@@ -406,26 +417,35 @@ dependencies = [
|
|
|
406
417
|
]
|
|
407
418
|
|
|
408
419
|
[[package]]
|
|
409
|
-
name = "crossbeam-
|
|
410
|
-
version = "0.
|
|
420
|
+
name = "crossbeam-epoch"
|
|
421
|
+
version = "0.9.20"
|
|
411
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
-
checksum = "
|
|
423
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"crossbeam-utils",
|
|
426
|
+
]
|
|
413
427
|
|
|
414
428
|
[[package]]
|
|
415
|
-
name = "
|
|
416
|
-
version = "0.1.
|
|
429
|
+
name = "crossbeam-skiplist"
|
|
430
|
+
version = "0.1.3"
|
|
417
431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
-
checksum = "
|
|
432
|
+
checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
|
|
419
433
|
dependencies = [
|
|
420
|
-
"
|
|
421
|
-
"
|
|
434
|
+
"crossbeam-epoch",
|
|
435
|
+
"crossbeam-utils",
|
|
422
436
|
]
|
|
423
437
|
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "crossbeam-utils"
|
|
440
|
+
version = "0.8.22"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
443
|
+
|
|
424
444
|
[[package]]
|
|
425
445
|
name = "crypto-common"
|
|
426
|
-
version = "0.2.
|
|
446
|
+
version = "0.2.2"
|
|
427
447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
-
checksum = "
|
|
448
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
429
449
|
dependencies = [
|
|
430
450
|
"hybrid-array",
|
|
431
451
|
]
|
|
@@ -436,8 +456,18 @@ version = "0.20.11"
|
|
|
436
456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
457
|
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
438
458
|
dependencies = [
|
|
439
|
-
"darling_core",
|
|
440
|
-
"darling_macro",
|
|
459
|
+
"darling_core 0.20.11",
|
|
460
|
+
"darling_macro 0.20.11",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "darling"
|
|
465
|
+
version = "0.23.0"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"darling_core 0.23.0",
|
|
470
|
+
"darling_macro 0.23.0",
|
|
441
471
|
]
|
|
442
472
|
|
|
443
473
|
[[package]]
|
|
@@ -454,22 +484,46 @@ dependencies = [
|
|
|
454
484
|
"syn",
|
|
455
485
|
]
|
|
456
486
|
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "darling_core"
|
|
489
|
+
version = "0.23.0"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"ident_case",
|
|
494
|
+
"proc-macro2",
|
|
495
|
+
"quote",
|
|
496
|
+
"strsim",
|
|
497
|
+
"syn",
|
|
498
|
+
]
|
|
499
|
+
|
|
457
500
|
[[package]]
|
|
458
501
|
name = "darling_macro"
|
|
459
502
|
version = "0.20.11"
|
|
460
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
504
|
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
462
505
|
dependencies = [
|
|
463
|
-
"darling_core",
|
|
506
|
+
"darling_core 0.20.11",
|
|
507
|
+
"quote",
|
|
508
|
+
"syn",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "darling_macro"
|
|
513
|
+
version = "0.23.0"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"darling_core 0.23.0",
|
|
464
518
|
"quote",
|
|
465
519
|
"syn",
|
|
466
520
|
]
|
|
467
521
|
|
|
468
522
|
[[package]]
|
|
469
523
|
name = "dashmap"
|
|
470
|
-
version = "6.1
|
|
524
|
+
version = "6.2.1"
|
|
471
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
-
checksum = "
|
|
526
|
+
checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
|
|
473
527
|
dependencies = [
|
|
474
528
|
"cfg-if",
|
|
475
529
|
"crossbeam-utils",
|
|
@@ -494,7 +548,7 @@ version = "0.20.2"
|
|
|
494
548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
549
|
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
496
550
|
dependencies = [
|
|
497
|
-
"darling",
|
|
551
|
+
"darling 0.20.11",
|
|
498
552
|
"proc-macro2",
|
|
499
553
|
"quote",
|
|
500
554
|
"syn",
|
|
@@ -510,32 +564,22 @@ dependencies = [
|
|
|
510
564
|
"syn",
|
|
511
565
|
]
|
|
512
566
|
|
|
513
|
-
[[package]]
|
|
514
|
-
name = "digest"
|
|
515
|
-
version = "0.10.7"
|
|
516
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
518
|
-
dependencies = [
|
|
519
|
-
"block-buffer 0.10.4",
|
|
520
|
-
"crypto-common 0.1.7",
|
|
521
|
-
]
|
|
522
|
-
|
|
523
567
|
[[package]]
|
|
524
568
|
name = "digest"
|
|
525
569
|
version = "0.11.3"
|
|
526
570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
571
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
528
572
|
dependencies = [
|
|
529
|
-
"block-buffer
|
|
573
|
+
"block-buffer",
|
|
530
574
|
"const-oid",
|
|
531
|
-
"crypto-common
|
|
575
|
+
"crypto-common",
|
|
532
576
|
]
|
|
533
577
|
|
|
534
578
|
[[package]]
|
|
535
579
|
name = "displaydoc"
|
|
536
|
-
version = "0.2.
|
|
580
|
+
version = "0.2.6"
|
|
537
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
582
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
539
583
|
dependencies = [
|
|
540
584
|
"proc-macro2",
|
|
541
585
|
"quote",
|
|
@@ -550,9 +594,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
550
594
|
|
|
551
595
|
[[package]]
|
|
552
596
|
name = "educe"
|
|
553
|
-
version = "0.
|
|
597
|
+
version = "0.7.4"
|
|
554
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
-
checksum = "
|
|
599
|
+
checksum = "92c3e1715a2bf74bc8f68cd7bae12ff144f02669c602106ad1fa16f2ba62e646"
|
|
556
600
|
dependencies = [
|
|
557
601
|
"enum-ordinalize",
|
|
558
602
|
"proc-macro2",
|
|
@@ -562,30 +606,42 @@ dependencies = [
|
|
|
562
606
|
|
|
563
607
|
[[package]]
|
|
564
608
|
name = "either"
|
|
565
|
-
version = "1.
|
|
609
|
+
version = "1.16.0"
|
|
566
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
-
checksum = "
|
|
611
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
568
612
|
|
|
569
613
|
[[package]]
|
|
570
614
|
name = "enum-ordinalize"
|
|
571
|
-
version = "4.
|
|
615
|
+
version = "4.4.1"
|
|
572
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
617
|
+
checksum = "07f808d588c10e464ea6f7d3eaed500049eff30aaac103460f61828c2d65b3eb"
|
|
574
618
|
dependencies = [
|
|
575
619
|
"enum-ordinalize-derive",
|
|
576
620
|
]
|
|
577
621
|
|
|
578
622
|
[[package]]
|
|
579
623
|
name = "enum-ordinalize-derive"
|
|
580
|
-
version = "4.
|
|
624
|
+
version = "4.4.1"
|
|
581
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
-
checksum = "
|
|
626
|
+
checksum = "42e528e2d34ba8a67a1a650b86beae8ef69fc5fdb638016f386b973226590432"
|
|
583
627
|
dependencies = [
|
|
584
628
|
"proc-macro2",
|
|
585
629
|
"quote",
|
|
586
630
|
"syn",
|
|
587
631
|
]
|
|
588
632
|
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "enum_dispatch"
|
|
635
|
+
version = "0.3.13"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"once_cell",
|
|
640
|
+
"proc-macro2",
|
|
641
|
+
"quote",
|
|
642
|
+
"syn",
|
|
643
|
+
]
|
|
644
|
+
|
|
589
645
|
[[package]]
|
|
590
646
|
name = "equivalent"
|
|
591
647
|
version = "1.0.2"
|
|
@@ -603,6 +659,22 @@ dependencies = [
|
|
|
603
659
|
"typeid",
|
|
604
660
|
]
|
|
605
661
|
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "errno"
|
|
664
|
+
version = "0.3.14"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"libc",
|
|
669
|
+
"windows-sys 0.61.2",
|
|
670
|
+
]
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "fastrand"
|
|
674
|
+
version = "2.4.1"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
677
|
+
|
|
606
678
|
[[package]]
|
|
607
679
|
name = "find-msvc-tools"
|
|
608
680
|
version = "0.1.9"
|
|
@@ -611,9 +683,26 @@ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
|
611
683
|
|
|
612
684
|
[[package]]
|
|
613
685
|
name = "fixedstr"
|
|
614
|
-
version = "0.5.
|
|
686
|
+
version = "0.5.11"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "651755bc34f44f4fef9edc525a2a88d913303b83a75de6de855cce6ef9180188"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "fjall"
|
|
692
|
+
version = "3.1.6"
|
|
615
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
-
checksum = "
|
|
694
|
+
checksum = "9fcdc69609906151dff9b534e30eaf8515082055d36f628e382bd0b5d6a1d362"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"byteorder-lite",
|
|
697
|
+
"byteview",
|
|
698
|
+
"dashmap",
|
|
699
|
+
"flume",
|
|
700
|
+
"log",
|
|
701
|
+
"lsm-tree",
|
|
702
|
+
"lz4_flex 0.13.1",
|
|
703
|
+
"tempfile",
|
|
704
|
+
"xxhash-rust",
|
|
705
|
+
]
|
|
617
706
|
|
|
618
707
|
[[package]]
|
|
619
708
|
name = "float-cmp"
|
|
@@ -624,6 +713,15 @@ dependencies = [
|
|
|
624
713
|
"num-traits",
|
|
625
714
|
]
|
|
626
715
|
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "flume"
|
|
718
|
+
version = "0.12.0"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"spin",
|
|
723
|
+
]
|
|
724
|
+
|
|
627
725
|
[[package]]
|
|
628
726
|
name = "fnv"
|
|
629
727
|
version = "1.0.7"
|
|
@@ -751,16 +849,6 @@ dependencies = [
|
|
|
751
849
|
"trilean",
|
|
752
850
|
]
|
|
753
851
|
|
|
754
|
-
[[package]]
|
|
755
|
-
name = "generic-array"
|
|
756
|
-
version = "0.14.7"
|
|
757
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
-
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
759
|
-
dependencies = [
|
|
760
|
-
"typenum",
|
|
761
|
-
"version_check",
|
|
762
|
-
]
|
|
763
|
-
|
|
764
852
|
[[package]]
|
|
765
853
|
name = "getrandom"
|
|
766
854
|
version = "0.3.4"
|
|
@@ -775,16 +863,14 @@ dependencies = [
|
|
|
775
863
|
|
|
776
864
|
[[package]]
|
|
777
865
|
name = "getrandom"
|
|
778
|
-
version = "0.4.
|
|
866
|
+
version = "0.4.3"
|
|
779
867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
-
checksum = "
|
|
868
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
781
869
|
dependencies = [
|
|
782
870
|
"cfg-if",
|
|
783
871
|
"libc",
|
|
784
872
|
"r-efi 6.0.0",
|
|
785
873
|
"rand_core 0.10.1",
|
|
786
|
-
"wasip2",
|
|
787
|
-
"wasip3",
|
|
788
874
|
]
|
|
789
875
|
|
|
790
876
|
[[package]]
|
|
@@ -795,9 +881,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
|
795
881
|
|
|
796
882
|
[[package]]
|
|
797
883
|
name = "globset"
|
|
798
|
-
version = "0.4.
|
|
884
|
+
version = "0.4.19"
|
|
799
885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
-
checksum = "
|
|
886
|
+
checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
|
|
801
887
|
dependencies = [
|
|
802
888
|
"aho-corasick",
|
|
803
889
|
"bstr",
|
|
@@ -808,9 +894,9 @@ dependencies = [
|
|
|
808
894
|
|
|
809
895
|
[[package]]
|
|
810
896
|
name = "h2"
|
|
811
|
-
version = "0.4.
|
|
897
|
+
version = "0.4.15"
|
|
812
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
899
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
814
900
|
dependencies = [
|
|
815
901
|
"atomic-waker",
|
|
816
902
|
"bytes",
|
|
@@ -865,9 +951,9 @@ dependencies = [
|
|
|
865
951
|
|
|
866
952
|
[[package]]
|
|
867
953
|
name = "hashbrown"
|
|
868
|
-
version = "0.17.
|
|
954
|
+
version = "0.17.1"
|
|
869
955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
-
checksum = "
|
|
956
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
871
957
|
|
|
872
958
|
[[package]]
|
|
873
959
|
name = "heck"
|
|
@@ -877,9 +963,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
877
963
|
|
|
878
964
|
[[package]]
|
|
879
965
|
name = "http"
|
|
880
|
-
version = "1.4.
|
|
966
|
+
version = "1.4.2"
|
|
881
967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "
|
|
968
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
883
969
|
dependencies = [
|
|
884
970
|
"bytes",
|
|
885
971
|
"itoa",
|
|
@@ -887,9 +973,9 @@ dependencies = [
|
|
|
887
973
|
|
|
888
974
|
[[package]]
|
|
889
975
|
name = "http-body"
|
|
890
|
-
version = "1.0
|
|
976
|
+
version = "1.1.0"
|
|
891
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
978
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
893
979
|
dependencies = [
|
|
894
980
|
"bytes",
|
|
895
981
|
"http",
|
|
@@ -897,9 +983,9 @@ dependencies = [
|
|
|
897
983
|
|
|
898
984
|
[[package]]
|
|
899
985
|
name = "http-body-util"
|
|
900
|
-
version = "0.1.
|
|
986
|
+
version = "0.1.4"
|
|
901
987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
-
checksum = "
|
|
988
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
903
989
|
dependencies = [
|
|
904
990
|
"bytes",
|
|
905
991
|
"futures-core",
|
|
@@ -922,24 +1008,24 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
922
1008
|
|
|
923
1009
|
[[package]]
|
|
924
1010
|
name = "humantime"
|
|
925
|
-
version = "2.
|
|
1011
|
+
version = "2.4.0"
|
|
926
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
-
checksum = "
|
|
1013
|
+
checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
|
|
928
1014
|
|
|
929
1015
|
[[package]]
|
|
930
1016
|
name = "hybrid-array"
|
|
931
|
-
version = "0.4.
|
|
1017
|
+
version = "0.4.13"
|
|
932
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
-
checksum = "
|
|
1019
|
+
checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
|
|
934
1020
|
dependencies = [
|
|
935
1021
|
"typenum",
|
|
936
1022
|
]
|
|
937
1023
|
|
|
938
1024
|
[[package]]
|
|
939
1025
|
name = "hyper"
|
|
940
|
-
version = "1.
|
|
1026
|
+
version = "1.10.1"
|
|
941
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
-
checksum = "
|
|
1028
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
943
1029
|
dependencies = [
|
|
944
1030
|
"atomic-waker",
|
|
945
1031
|
"bytes",
|
|
@@ -987,7 +1073,7 @@ dependencies = [
|
|
|
987
1073
|
"libc",
|
|
988
1074
|
"percent-encoding",
|
|
989
1075
|
"pin-project-lite",
|
|
990
|
-
"socket2 0.6.
|
|
1076
|
+
"socket2 0.6.5",
|
|
991
1077
|
"tokio",
|
|
992
1078
|
"tower-service",
|
|
993
1079
|
"tracing",
|
|
@@ -1099,12 +1185,6 @@ dependencies = [
|
|
|
1099
1185
|
"zerovec",
|
|
1100
1186
|
]
|
|
1101
1187
|
|
|
1102
|
-
[[package]]
|
|
1103
|
-
name = "id-arena"
|
|
1104
|
-
version = "2.3.0"
|
|
1105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1107
|
-
|
|
1108
1188
|
[[package]]
|
|
1109
1189
|
name = "ident_case"
|
|
1110
1190
|
version = "1.0.1"
|
|
@@ -1139,9 +1219,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1139
1219
|
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1140
1220
|
dependencies = [
|
|
1141
1221
|
"equivalent",
|
|
1142
|
-
"hashbrown 0.17.
|
|
1143
|
-
"serde",
|
|
1144
|
-
"serde_core",
|
|
1222
|
+
"hashbrown 0.17.1",
|
|
1145
1223
|
]
|
|
1146
1224
|
|
|
1147
1225
|
[[package]]
|
|
@@ -1153,6 +1231,15 @@ dependencies = [
|
|
|
1153
1231
|
"hashbrown 0.15.5",
|
|
1154
1232
|
]
|
|
1155
1233
|
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "interval-heap"
|
|
1236
|
+
version = "0.0.5"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "11274e5e8e89b8607cfedc2910b6626e998779b48a019151c7604d0adcb86ac6"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"compare",
|
|
1241
|
+
]
|
|
1242
|
+
|
|
1156
1243
|
[[package]]
|
|
1157
1244
|
name = "intervallum"
|
|
1158
1245
|
version = "1.4.4"
|
|
@@ -1197,15 +1284,24 @@ version = "1.0.18"
|
|
|
1197
1284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
1285
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1199
1286
|
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "jobserver"
|
|
1289
|
+
version = "0.1.35"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"getrandom 0.4.3",
|
|
1294
|
+
"libc",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1200
1297
|
[[package]]
|
|
1201
1298
|
name = "js-sys"
|
|
1202
|
-
version = "0.3.
|
|
1299
|
+
version = "0.3.103"
|
|
1203
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
-
checksum = "
|
|
1301
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
1205
1302
|
dependencies = [
|
|
1206
1303
|
"cfg-if",
|
|
1207
1304
|
"futures-util",
|
|
1208
|
-
"once_cell",
|
|
1209
1305
|
"wasm-bindgen",
|
|
1210
1306
|
]
|
|
1211
1307
|
|
|
@@ -1215,12 +1311,6 @@ version = "1.5.0"
|
|
|
1215
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
1312
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1217
1313
|
|
|
1218
|
-
[[package]]
|
|
1219
|
-
name = "leb128fmt"
|
|
1220
|
-
version = "0.1.0"
|
|
1221
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1223
|
-
|
|
1224
1314
|
[[package]]
|
|
1225
1315
|
name = "libc"
|
|
1226
1316
|
version = "0.2.186"
|
|
@@ -1239,27 +1329,27 @@ dependencies = [
|
|
|
1239
1329
|
|
|
1240
1330
|
[[package]]
|
|
1241
1331
|
name = "libmimalloc-sys"
|
|
1242
|
-
version = "0.1.
|
|
1332
|
+
version = "0.1.49"
|
|
1243
1333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
-
checksum = "
|
|
1334
|
+
checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
|
|
1245
1335
|
dependencies = [
|
|
1246
1336
|
"cc",
|
|
1247
1337
|
]
|
|
1248
1338
|
|
|
1249
1339
|
[[package]]
|
|
1250
1340
|
name = "libredox"
|
|
1251
|
-
version = "0.1.
|
|
1341
|
+
version = "0.1.18"
|
|
1252
1342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
-
checksum = "
|
|
1343
|
+
checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
|
|
1254
1344
|
dependencies = [
|
|
1255
1345
|
"libc",
|
|
1256
1346
|
]
|
|
1257
1347
|
|
|
1258
1348
|
[[package]]
|
|
1259
1349
|
name = "libz-sys"
|
|
1260
|
-
version = "1.1.
|
|
1350
|
+
version = "1.1.29"
|
|
1261
1351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
-
checksum = "
|
|
1352
|
+
checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
|
|
1263
1353
|
dependencies = [
|
|
1264
1354
|
"cc",
|
|
1265
1355
|
"libc",
|
|
@@ -1267,6 +1357,12 @@ dependencies = [
|
|
|
1267
1357
|
"vcpkg",
|
|
1268
1358
|
]
|
|
1269
1359
|
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "linux-raw-sys"
|
|
1362
|
+
version = "0.12.1"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1365
|
+
|
|
1270
1366
|
[[package]]
|
|
1271
1367
|
name = "litemap"
|
|
1272
1368
|
version = "0.8.2"
|
|
@@ -1284,9 +1380,31 @@ dependencies = [
|
|
|
1284
1380
|
|
|
1285
1381
|
[[package]]
|
|
1286
1382
|
name = "log"
|
|
1287
|
-
version = "0.4.
|
|
1383
|
+
version = "0.4.33"
|
|
1288
1384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "
|
|
1385
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1386
|
+
|
|
1387
|
+
[[package]]
|
|
1388
|
+
name = "lsm-tree"
|
|
1389
|
+
version = "3.1.6"
|
|
1390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
+
checksum = "39ca67401338b98d58447387dd5230552d2241bc388206e491d137b18dfea9d6"
|
|
1392
|
+
dependencies = [
|
|
1393
|
+
"byteorder-lite",
|
|
1394
|
+
"byteview",
|
|
1395
|
+
"crossbeam-skiplist",
|
|
1396
|
+
"enum_dispatch",
|
|
1397
|
+
"interval-heap",
|
|
1398
|
+
"log",
|
|
1399
|
+
"lz4_flex 0.13.1",
|
|
1400
|
+
"quick_cache 0.6.24",
|
|
1401
|
+
"rustc-hash",
|
|
1402
|
+
"self_cell",
|
|
1403
|
+
"sfa",
|
|
1404
|
+
"tempfile",
|
|
1405
|
+
"varint-rs",
|
|
1406
|
+
"xxhash-rust",
|
|
1407
|
+
]
|
|
1290
1408
|
|
|
1291
1409
|
[[package]]
|
|
1292
1410
|
name = "lz4_flex"
|
|
@@ -1297,6 +1415,15 @@ dependencies = [
|
|
|
1297
1415
|
"twox-hash",
|
|
1298
1416
|
]
|
|
1299
1417
|
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "lz4_flex"
|
|
1420
|
+
version = "0.13.1"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"twox-hash",
|
|
1425
|
+
]
|
|
1426
|
+
|
|
1300
1427
|
[[package]]
|
|
1301
1428
|
name = "magnus"
|
|
1302
1429
|
version = "0.8.2"
|
|
@@ -1337,15 +1464,15 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
|
1337
1464
|
|
|
1338
1465
|
[[package]]
|
|
1339
1466
|
name = "memchr"
|
|
1340
|
-
version = "2.8.
|
|
1467
|
+
version = "2.8.3"
|
|
1341
1468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
-
checksum = "
|
|
1469
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1343
1470
|
|
|
1344
1471
|
[[package]]
|
|
1345
1472
|
name = "mimalloc"
|
|
1346
|
-
version = "0.1.
|
|
1473
|
+
version = "0.1.52"
|
|
1347
1474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
-
checksum = "
|
|
1475
|
+
checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
|
|
1349
1476
|
dependencies = [
|
|
1350
1477
|
"libmimalloc-sys",
|
|
1351
1478
|
]
|
|
@@ -1356,6 +1483,16 @@ version = "0.3.17"
|
|
|
1356
1483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
1484
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1358
1485
|
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "mime_guess"
|
|
1488
|
+
version = "2.0.5"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
1491
|
+
dependencies = [
|
|
1492
|
+
"mime",
|
|
1493
|
+
"unicase",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1359
1496
|
[[package]]
|
|
1360
1497
|
name = "minimal-lexical"
|
|
1361
1498
|
version = "0.2.1"
|
|
@@ -1364,9 +1501,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1364
1501
|
|
|
1365
1502
|
[[package]]
|
|
1366
1503
|
name = "mio"
|
|
1367
|
-
version = "1.2.
|
|
1504
|
+
version = "1.2.2"
|
|
1368
1505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
-
checksum = "
|
|
1506
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
1370
1507
|
dependencies = [
|
|
1371
1508
|
"libc",
|
|
1372
1509
|
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
@@ -1464,9 +1601,9 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
|
1464
1601
|
|
|
1465
1602
|
[[package]]
|
|
1466
1603
|
name = "opentelemetry"
|
|
1467
|
-
version = "0.
|
|
1604
|
+
version = "0.32.0"
|
|
1468
1605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
-
checksum = "
|
|
1606
|
+
checksum = "b0142c63252a9e054e68a4c61a5778f7b14f576274d593f8ce883d191a099682"
|
|
1470
1607
|
dependencies = [
|
|
1471
1608
|
"futures-core",
|
|
1472
1609
|
"futures-sink",
|
|
@@ -1478,9 +1615,9 @@ dependencies = [
|
|
|
1478
1615
|
|
|
1479
1616
|
[[package]]
|
|
1480
1617
|
name = "opentelemetry-http"
|
|
1481
|
-
version = "0.
|
|
1618
|
+
version = "0.32.0"
|
|
1482
1619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
-
checksum = "
|
|
1620
|
+
checksum = "5683015d09e2df236ef005b17f6f196f0d5f6313c4fa43a7b6a53b52776e4331"
|
|
1484
1621
|
dependencies = [
|
|
1485
1622
|
"async-trait",
|
|
1486
1623
|
"bytes",
|
|
@@ -1491,9 +1628,9 @@ dependencies = [
|
|
|
1491
1628
|
|
|
1492
1629
|
[[package]]
|
|
1493
1630
|
name = "opentelemetry-otlp"
|
|
1494
|
-
version = "0.
|
|
1631
|
+
version = "0.32.0"
|
|
1495
1632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
-
checksum = "
|
|
1633
|
+
checksum = "9966929966d17620d7c316c643ba62631826e10021409357772d5eea84f62c35"
|
|
1497
1634
|
dependencies = [
|
|
1498
1635
|
"http",
|
|
1499
1636
|
"opentelemetry",
|
|
@@ -1506,14 +1643,14 @@ dependencies = [
|
|
|
1506
1643
|
"thiserror",
|
|
1507
1644
|
"tokio",
|
|
1508
1645
|
"tonic",
|
|
1509
|
-
"
|
|
1646
|
+
"tonic-types",
|
|
1510
1647
|
]
|
|
1511
1648
|
|
|
1512
1649
|
[[package]]
|
|
1513
1650
|
name = "opentelemetry-proto"
|
|
1514
|
-
version = "0.
|
|
1651
|
+
version = "0.32.0"
|
|
1515
1652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
-
checksum = "
|
|
1653
|
+
checksum = "56d658ba1faf63f7b9c492cfbe6e0ec365440a16132d3270c1065f7b33f1b638"
|
|
1517
1654
|
dependencies = [
|
|
1518
1655
|
"base64",
|
|
1519
1656
|
"const-hex",
|
|
@@ -1521,23 +1658,23 @@ dependencies = [
|
|
|
1521
1658
|
"opentelemetry_sdk",
|
|
1522
1659
|
"prost",
|
|
1523
1660
|
"serde",
|
|
1524
|
-
"serde_json",
|
|
1525
1661
|
"tonic",
|
|
1526
1662
|
"tonic-prost",
|
|
1527
1663
|
]
|
|
1528
1664
|
|
|
1529
1665
|
[[package]]
|
|
1530
1666
|
name = "opentelemetry_sdk"
|
|
1531
|
-
version = "0.
|
|
1667
|
+
version = "0.32.1"
|
|
1532
1668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
-
checksum = "
|
|
1669
|
+
checksum = "9b59f80e1ac4d5ff7a2db8fb6c80badb7f0f3f858211fba08dd9aaec750894f9"
|
|
1534
1670
|
dependencies = [
|
|
1535
1671
|
"futures-channel",
|
|
1536
1672
|
"futures-executor",
|
|
1537
1673
|
"futures-util",
|
|
1538
1674
|
"opentelemetry",
|
|
1539
1675
|
"percent-encoding",
|
|
1540
|
-
"
|
|
1676
|
+
"portable-atomic",
|
|
1677
|
+
"rand 0.9.5",
|
|
1541
1678
|
"thiserror",
|
|
1542
1679
|
"tokio",
|
|
1543
1680
|
"tokio-stream",
|
|
@@ -1580,18 +1717,18 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
1580
1717
|
|
|
1581
1718
|
[[package]]
|
|
1582
1719
|
name = "pin-project"
|
|
1583
|
-
version = "1.1.
|
|
1720
|
+
version = "1.1.13"
|
|
1584
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
-
checksum = "
|
|
1722
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
1586
1723
|
dependencies = [
|
|
1587
1724
|
"pin-project-internal",
|
|
1588
1725
|
]
|
|
1589
1726
|
|
|
1590
1727
|
[[package]]
|
|
1591
1728
|
name = "pin-project-internal"
|
|
1592
|
-
version = "1.1.
|
|
1729
|
+
version = "1.1.13"
|
|
1593
1730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
-
checksum = "
|
|
1731
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
1595
1732
|
dependencies = [
|
|
1596
1733
|
"proc-macro2",
|
|
1597
1734
|
"quote",
|
|
@@ -1634,16 +1771,6 @@ dependencies = [
|
|
|
1634
1771
|
"zerocopy",
|
|
1635
1772
|
]
|
|
1636
1773
|
|
|
1637
|
-
[[package]]
|
|
1638
|
-
name = "prettyplease"
|
|
1639
|
-
version = "0.2.37"
|
|
1640
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
-
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1642
|
-
dependencies = [
|
|
1643
|
-
"proc-macro2",
|
|
1644
|
-
"syn",
|
|
1645
|
-
]
|
|
1646
|
-
|
|
1647
1774
|
[[package]]
|
|
1648
1775
|
name = "proc-macro-crate"
|
|
1649
1776
|
version = "3.5.0"
|
|
@@ -1654,22 +1781,22 @@ dependencies = [
|
|
|
1654
1781
|
]
|
|
1655
1782
|
|
|
1656
1783
|
[[package]]
|
|
1657
|
-
name = "proc-macro-error-
|
|
1658
|
-
version = "
|
|
1784
|
+
name = "proc-macro-error-attr3"
|
|
1785
|
+
version = "3.0.2"
|
|
1659
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
-
checksum = "
|
|
1787
|
+
checksum = "34e4dd828515431dd6c4a030d26f7eaed7dd4778226e9d2bb968d65ca4ec3d4d"
|
|
1661
1788
|
dependencies = [
|
|
1662
1789
|
"proc-macro2",
|
|
1663
1790
|
"quote",
|
|
1664
1791
|
]
|
|
1665
1792
|
|
|
1666
1793
|
[[package]]
|
|
1667
|
-
name = "proc-macro-
|
|
1668
|
-
version = "
|
|
1794
|
+
name = "proc-macro-error3"
|
|
1795
|
+
version = "3.0.2"
|
|
1669
1796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1797
|
+
checksum = "5ee475e440453418ff1335189eddf7101ba502cd818ab7ae04209bc83aa925aa"
|
|
1671
1798
|
dependencies = [
|
|
1672
|
-
"proc-macro-error-
|
|
1799
|
+
"proc-macro-error-attr3",
|
|
1673
1800
|
"proc-macro2",
|
|
1674
1801
|
"quote",
|
|
1675
1802
|
"syn",
|
|
@@ -1692,7 +1819,7 @@ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
|
1692
1819
|
dependencies = [
|
|
1693
1820
|
"bitflags",
|
|
1694
1821
|
"num-traits",
|
|
1695
|
-
"rand 0.9.
|
|
1822
|
+
"rand 0.9.5",
|
|
1696
1823
|
"rand_chacha",
|
|
1697
1824
|
"rand_xorshift",
|
|
1698
1825
|
"regex-syntax",
|
|
@@ -1710,7 +1837,7 @@ dependencies = [
|
|
|
1710
1837
|
"magnus",
|
|
1711
1838
|
"mimalloc",
|
|
1712
1839
|
"opentelemetry",
|
|
1713
|
-
"prosody 0.
|
|
1840
|
+
"prosody 0.5.0",
|
|
1714
1841
|
"rb-sys",
|
|
1715
1842
|
"serde",
|
|
1716
1843
|
"serde-untagged",
|
|
@@ -1726,9 +1853,9 @@ dependencies = [
|
|
|
1726
1853
|
|
|
1727
1854
|
[[package]]
|
|
1728
1855
|
name = "prosody"
|
|
1729
|
-
version = "0.
|
|
1856
|
+
version = "0.5.0"
|
|
1730
1857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
-
checksum = "
|
|
1858
|
+
checksum = "fdbd9188c2e8982e1eff22d0ff5aa97a65dac98a02b3c6ec58c74073c8ea8c44"
|
|
1732
1859
|
dependencies = [
|
|
1733
1860
|
"ahash",
|
|
1734
1861
|
"aho-corasick",
|
|
@@ -1745,6 +1872,7 @@ dependencies = [
|
|
|
1745
1872
|
"dyn-clone",
|
|
1746
1873
|
"educe",
|
|
1747
1874
|
"fixedstr",
|
|
1875
|
+
"fjall",
|
|
1748
1876
|
"futures",
|
|
1749
1877
|
"humantime",
|
|
1750
1878
|
"internment",
|
|
@@ -1758,15 +1886,16 @@ dependencies = [
|
|
|
1758
1886
|
"pin-project",
|
|
1759
1887
|
"portable-atomic",
|
|
1760
1888
|
"quanta",
|
|
1761
|
-
"quick_cache",
|
|
1762
|
-
"rand 0.10.
|
|
1889
|
+
"quick_cache 0.7.0",
|
|
1890
|
+
"rand 0.10.2",
|
|
1763
1891
|
"rdkafka",
|
|
1892
|
+
"rmp-serde",
|
|
1764
1893
|
"rust-embed",
|
|
1765
1894
|
"scc",
|
|
1766
1895
|
"scylla",
|
|
1767
1896
|
"serde",
|
|
1768
1897
|
"serde_json",
|
|
1769
|
-
"sha2
|
|
1898
|
+
"sha2",
|
|
1770
1899
|
"simd-json",
|
|
1771
1900
|
"smallvec",
|
|
1772
1901
|
"strum",
|
|
@@ -1781,13 +1910,14 @@ dependencies = [
|
|
|
1781
1910
|
"validator",
|
|
1782
1911
|
"whoami",
|
|
1783
1912
|
"xxhash-rust",
|
|
1913
|
+
"zstd",
|
|
1784
1914
|
]
|
|
1785
1915
|
|
|
1786
1916
|
[[package]]
|
|
1787
1917
|
name = "prost"
|
|
1788
|
-
version = "0.14.
|
|
1918
|
+
version = "0.14.4"
|
|
1789
1919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
-
checksum = "
|
|
1920
|
+
checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
|
|
1791
1921
|
dependencies = [
|
|
1792
1922
|
"bytes",
|
|
1793
1923
|
"prost-derive",
|
|
@@ -1795,9 +1925,9 @@ dependencies = [
|
|
|
1795
1925
|
|
|
1796
1926
|
[[package]]
|
|
1797
1927
|
name = "prost-derive"
|
|
1798
|
-
version = "0.14.
|
|
1928
|
+
version = "0.14.4"
|
|
1799
1929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
-
checksum = "
|
|
1930
|
+
checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
|
|
1801
1931
|
dependencies = [
|
|
1802
1932
|
"anyhow",
|
|
1803
1933
|
"itertools 0.14.0",
|
|
@@ -1806,6 +1936,15 @@ dependencies = [
|
|
|
1806
1936
|
"syn",
|
|
1807
1937
|
]
|
|
1808
1938
|
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "prost-types"
|
|
1941
|
+
version = "0.14.4"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
|
|
1944
|
+
dependencies = [
|
|
1945
|
+
"prost",
|
|
1946
|
+
]
|
|
1947
|
+
|
|
1809
1948
|
[[package]]
|
|
1810
1949
|
name = "quanta"
|
|
1811
1950
|
version = "0.12.6"
|
|
@@ -1823,21 +1962,31 @@ dependencies = [
|
|
|
1823
1962
|
|
|
1824
1963
|
[[package]]
|
|
1825
1964
|
name = "quick_cache"
|
|
1826
|
-
version = "0.6.
|
|
1965
|
+
version = "0.6.24"
|
|
1827
1966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1828
|
-
checksum = "
|
|
1967
|
+
checksum = "b9c6658afe513a3b484e3abfdaa0d03ef3c0bbf017542c178dd55f94eb3051f9"
|
|
1829
1968
|
dependencies = [
|
|
1830
|
-
"ahash",
|
|
1831
1969
|
"equivalent",
|
|
1832
1970
|
"hashbrown 0.16.1",
|
|
1971
|
+
]
|
|
1972
|
+
|
|
1973
|
+
[[package]]
|
|
1974
|
+
name = "quick_cache"
|
|
1975
|
+
version = "0.7.0"
|
|
1976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
+
checksum = "403c1a912fec895cafb223201e368234842acb9220aaf08ab042ae89ba5f135c"
|
|
1978
|
+
dependencies = [
|
|
1979
|
+
"equivalent",
|
|
1980
|
+
"foldhash 0.2.0",
|
|
1981
|
+
"hashbrown 0.17.1",
|
|
1833
1982
|
"parking_lot",
|
|
1834
1983
|
]
|
|
1835
1984
|
|
|
1836
1985
|
[[package]]
|
|
1837
1986
|
name = "quote"
|
|
1838
|
-
version = "1.0.
|
|
1987
|
+
version = "1.0.46"
|
|
1839
1988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
-
checksum = "
|
|
1989
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1841
1990
|
dependencies = [
|
|
1842
1991
|
"proc-macro2",
|
|
1843
1992
|
]
|
|
@@ -1856,9 +2005,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
|
1856
2005
|
|
|
1857
2006
|
[[package]]
|
|
1858
2007
|
name = "rand"
|
|
1859
|
-
version = "0.9.
|
|
2008
|
+
version = "0.9.5"
|
|
1860
2009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
-
checksum = "
|
|
2010
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
1862
2011
|
dependencies = [
|
|
1863
2012
|
"rand_chacha",
|
|
1864
2013
|
"rand_core 0.9.5",
|
|
@@ -1866,12 +2015,12 @@ dependencies = [
|
|
|
1866
2015
|
|
|
1867
2016
|
[[package]]
|
|
1868
2017
|
name = "rand"
|
|
1869
|
-
version = "0.10.
|
|
2018
|
+
version = "0.10.2"
|
|
1870
2019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
2020
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1872
2021
|
dependencies = [
|
|
1873
2022
|
"chacha20",
|
|
1874
|
-
"getrandom 0.4.
|
|
2023
|
+
"getrandom 0.4.3",
|
|
1875
2024
|
"rand_core 0.10.1",
|
|
1876
2025
|
]
|
|
1877
2026
|
|
|
@@ -2020,9 +2169,9 @@ dependencies = [
|
|
|
2020
2169
|
|
|
2021
2170
|
[[package]]
|
|
2022
2171
|
name = "regex"
|
|
2023
|
-
version = "1.
|
|
2172
|
+
version = "1.13.1"
|
|
2024
2173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
-
checksum = "
|
|
2174
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
2026
2175
|
dependencies = [
|
|
2027
2176
|
"aho-corasick",
|
|
2028
2177
|
"memchr",
|
|
@@ -2032,9 +2181,9 @@ dependencies = [
|
|
|
2032
2181
|
|
|
2033
2182
|
[[package]]
|
|
2034
2183
|
name = "regex-automata"
|
|
2035
|
-
version = "0.4.
|
|
2184
|
+
version = "0.4.16"
|
|
2036
2185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
-
checksum = "
|
|
2186
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
2038
2187
|
dependencies = [
|
|
2039
2188
|
"aho-corasick",
|
|
2040
2189
|
"memchr",
|
|
@@ -2043,15 +2192,15 @@ dependencies = [
|
|
|
2043
2192
|
|
|
2044
2193
|
[[package]]
|
|
2045
2194
|
name = "regex-syntax"
|
|
2046
|
-
version = "0.8.
|
|
2195
|
+
version = "0.8.11"
|
|
2047
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2048
|
-
checksum = "
|
|
2197
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2049
2198
|
|
|
2050
2199
|
[[package]]
|
|
2051
2200
|
name = "reqwest"
|
|
2052
|
-
version = "0.
|
|
2201
|
+
version = "0.13.4"
|
|
2053
2202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
-
checksum = "
|
|
2203
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
2055
2204
|
dependencies = [
|
|
2056
2205
|
"base64",
|
|
2057
2206
|
"bytes",
|
|
@@ -2067,9 +2216,6 @@ dependencies = [
|
|
|
2067
2216
|
"log",
|
|
2068
2217
|
"percent-encoding",
|
|
2069
2218
|
"pin-project-lite",
|
|
2070
|
-
"serde",
|
|
2071
|
-
"serde_json",
|
|
2072
|
-
"serde_urlencoded",
|
|
2073
2219
|
"sync_wrapper",
|
|
2074
2220
|
"tokio",
|
|
2075
2221
|
"tower",
|
|
@@ -2081,11 +2227,30 @@ dependencies = [
|
|
|
2081
2227
|
"web-sys",
|
|
2082
2228
|
]
|
|
2083
2229
|
|
|
2230
|
+
[[package]]
|
|
2231
|
+
name = "rmp"
|
|
2232
|
+
version = "0.8.15"
|
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
+
checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
|
|
2235
|
+
dependencies = [
|
|
2236
|
+
"num-traits",
|
|
2237
|
+
]
|
|
2238
|
+
|
|
2239
|
+
[[package]]
|
|
2240
|
+
name = "rmp-serde"
|
|
2241
|
+
version = "1.3.1"
|
|
2242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
|
+
checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
|
|
2244
|
+
dependencies = [
|
|
2245
|
+
"rmp",
|
|
2246
|
+
"serde",
|
|
2247
|
+
]
|
|
2248
|
+
|
|
2084
2249
|
[[package]]
|
|
2085
2250
|
name = "rust-embed"
|
|
2086
|
-
version = "8.
|
|
2251
|
+
version = "8.12.0"
|
|
2087
2252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
-
checksum = "
|
|
2253
|
+
checksum = "e9e7760e252aaba7b09f4be00e36476cf585bdb68a53552ac954cdf504ab4bc9"
|
|
2089
2254
|
dependencies = [
|
|
2090
2255
|
"rust-embed-impl",
|
|
2091
2256
|
"rust-embed-utils",
|
|
@@ -2094,10 +2259,11 @@ dependencies = [
|
|
|
2094
2259
|
|
|
2095
2260
|
[[package]]
|
|
2096
2261
|
name = "rust-embed-impl"
|
|
2097
|
-
version = "8.
|
|
2262
|
+
version = "8.12.0"
|
|
2098
2263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
-
checksum = "
|
|
2264
|
+
checksum = "3bcfc4d6f53af43755f7a723e4b6b8794fcce052a178dd8c6c1dadc5f5343097"
|
|
2100
2265
|
dependencies = [
|
|
2266
|
+
"mime_guess",
|
|
2101
2267
|
"proc-macro2",
|
|
2102
2268
|
"quote",
|
|
2103
2269
|
"rust-embed-utils",
|
|
@@ -2107,26 +2273,39 @@ dependencies = [
|
|
|
2107
2273
|
|
|
2108
2274
|
[[package]]
|
|
2109
2275
|
name = "rust-embed-utils"
|
|
2110
|
-
version = "8.
|
|
2276
|
+
version = "8.12.0"
|
|
2111
2277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
-
checksum = "
|
|
2278
|
+
checksum = "42ffa149f6aa81b58a5b3011d01a857c4ed12c7a732d2c51947a4c7c692185f0"
|
|
2113
2279
|
dependencies = [
|
|
2114
2280
|
"globset",
|
|
2115
|
-
"sha2
|
|
2281
|
+
"sha2",
|
|
2116
2282
|
"walkdir",
|
|
2117
2283
|
]
|
|
2118
2284
|
|
|
2119
2285
|
[[package]]
|
|
2120
2286
|
name = "rustc-hash"
|
|
2121
|
-
version = "2.1.
|
|
2287
|
+
version = "2.1.3"
|
|
2122
2288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
-
checksum = "
|
|
2289
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "rustix"
|
|
2293
|
+
version = "1.1.4"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"bitflags",
|
|
2298
|
+
"errno",
|
|
2299
|
+
"libc",
|
|
2300
|
+
"linux-raw-sys",
|
|
2301
|
+
"windows-sys 0.61.2",
|
|
2302
|
+
]
|
|
2124
2303
|
|
|
2125
2304
|
[[package]]
|
|
2126
2305
|
name = "rustversion"
|
|
2127
|
-
version = "1.0.
|
|
2306
|
+
version = "1.0.23"
|
|
2128
2307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
-
checksum = "
|
|
2308
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
2130
2309
|
|
|
2131
2310
|
[[package]]
|
|
2132
2311
|
name = "ryu"
|
|
@@ -2136,9 +2315,9 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
|
2136
2315
|
|
|
2137
2316
|
[[package]]
|
|
2138
2317
|
name = "saa"
|
|
2139
|
-
version = "5.
|
|
2318
|
+
version = "5.6.0"
|
|
2140
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
-
checksum = "
|
|
2320
|
+
checksum = "68f5acb362a0e75c2a963532fa7fabf13dff81626dc494df16488d30befcbea0"
|
|
2142
2321
|
|
|
2143
2322
|
[[package]]
|
|
2144
2323
|
name = "same-file"
|
|
@@ -2151,9 +2330,9 @@ dependencies = [
|
|
|
2151
2330
|
|
|
2152
2331
|
[[package]]
|
|
2153
2332
|
name = "scc"
|
|
2154
|
-
version = "3.
|
|
2333
|
+
version = "3.8.5"
|
|
2155
2334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
-
checksum = "
|
|
2335
|
+
checksum = "f733aa28b85255811ad1358d559fe9a182e39327cf5470140ed9d444de86e6d5"
|
|
2157
2336
|
dependencies = [
|
|
2158
2337
|
"saa",
|
|
2159
2338
|
"sdd",
|
|
@@ -2167,9 +2346,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2167
2346
|
|
|
2168
2347
|
[[package]]
|
|
2169
2348
|
name = "scylla"
|
|
2170
|
-
version = "1.
|
|
2349
|
+
version = "1.7.0"
|
|
2171
2350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
-
checksum = "
|
|
2351
|
+
checksum = "4febc4a3c0b2b6a6ab0b25670a28015a7b87f6998b01ad324be19bb583237ad9"
|
|
2173
2352
|
dependencies = [
|
|
2174
2353
|
"arc-swap",
|
|
2175
2354
|
"async-trait",
|
|
@@ -2179,9 +2358,10 @@ dependencies = [
|
|
|
2179
2358
|
"futures",
|
|
2180
2359
|
"hashbrown 0.15.5",
|
|
2181
2360
|
"itertools 0.14.0",
|
|
2182
|
-
"rand 0.9.
|
|
2361
|
+
"rand 0.9.5",
|
|
2183
2362
|
"rand_pcg",
|
|
2184
2363
|
"scylla-cql",
|
|
2364
|
+
"scylla-cql-core",
|
|
2185
2365
|
"smallvec",
|
|
2186
2366
|
"socket2 0.5.10",
|
|
2187
2367
|
"thiserror",
|
|
@@ -2192,16 +2372,16 @@ dependencies = [
|
|
|
2192
2372
|
|
|
2193
2373
|
[[package]]
|
|
2194
2374
|
name = "scylla-cql"
|
|
2195
|
-
version = "1.
|
|
2375
|
+
version = "1.7.0"
|
|
2196
2376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2197
|
-
checksum = "
|
|
2377
|
+
checksum = "7898c851387b20e0996b33d6d98426c432cc0b45ed9af3cb4bd8b4d540ad7ade"
|
|
2198
2378
|
dependencies = [
|
|
2199
2379
|
"byteorder",
|
|
2200
2380
|
"bytes",
|
|
2201
2381
|
"chrono",
|
|
2202
2382
|
"itertools 0.14.0",
|
|
2203
|
-
"lz4_flex",
|
|
2204
|
-
"scylla-
|
|
2383
|
+
"lz4_flex 0.11.6",
|
|
2384
|
+
"scylla-cql-core",
|
|
2205
2385
|
"snap",
|
|
2206
2386
|
"stable_deref_trait",
|
|
2207
2387
|
"thiserror",
|
|
@@ -2210,13 +2390,28 @@ dependencies = [
|
|
|
2210
2390
|
"yoke",
|
|
2211
2391
|
]
|
|
2212
2392
|
|
|
2393
|
+
[[package]]
|
|
2394
|
+
name = "scylla-cql-core"
|
|
2395
|
+
version = "1.7.0"
|
|
2396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2397
|
+
checksum = "2e609d59933b27489fb329e0e290469f0a027fd75a598f8d219b1479ed6213d0"
|
|
2398
|
+
dependencies = [
|
|
2399
|
+
"byteorder",
|
|
2400
|
+
"bytes",
|
|
2401
|
+
"chrono",
|
|
2402
|
+
"itertools 0.14.0",
|
|
2403
|
+
"scylla-macros",
|
|
2404
|
+
"thiserror",
|
|
2405
|
+
"uuid",
|
|
2406
|
+
]
|
|
2407
|
+
|
|
2213
2408
|
[[package]]
|
|
2214
2409
|
name = "scylla-macros"
|
|
2215
|
-
version = "1.
|
|
2410
|
+
version = "1.7.0"
|
|
2216
2411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
-
checksum = "
|
|
2412
|
+
checksum = "275a0290cc00fc50a46b302ad09490ccce2eff1203d648addab1bd8ae833b96e"
|
|
2218
2413
|
dependencies = [
|
|
2219
|
-
"darling",
|
|
2414
|
+
"darling 0.20.11",
|
|
2220
2415
|
"proc-macro2",
|
|
2221
2416
|
"quote",
|
|
2222
2417
|
"syn",
|
|
@@ -2224,18 +2419,18 @@ dependencies = [
|
|
|
2224
2419
|
|
|
2225
2420
|
[[package]]
|
|
2226
2421
|
name = "sdd"
|
|
2227
|
-
version = "4.8.
|
|
2422
|
+
version = "4.8.8"
|
|
2228
2423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2229
|
-
checksum = "
|
|
2424
|
+
checksum = "1836bad8bdc9c6d665b63202da3d9c6d60ed1e597cae63620e21ebf89a3595a9"
|
|
2230
2425
|
dependencies = [
|
|
2231
2426
|
"saa",
|
|
2232
2427
|
]
|
|
2233
2428
|
|
|
2234
2429
|
[[package]]
|
|
2235
|
-
name = "
|
|
2236
|
-
version = "1.0
|
|
2430
|
+
name = "self_cell"
|
|
2431
|
+
version = "1.3.0"
|
|
2237
2432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
-
checksum = "
|
|
2433
|
+
checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
|
|
2239
2434
|
|
|
2240
2435
|
[[package]]
|
|
2241
2436
|
name = "seq-macro"
|
|
@@ -2287,9 +2482,9 @@ dependencies = [
|
|
|
2287
2482
|
|
|
2288
2483
|
[[package]]
|
|
2289
2484
|
name = "serde_json"
|
|
2290
|
-
version = "1.0.
|
|
2485
|
+
version = "1.0.150"
|
|
2291
2486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
-
checksum = "
|
|
2487
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
2293
2488
|
dependencies = [
|
|
2294
2489
|
"itoa",
|
|
2295
2490
|
"memchr",
|
|
@@ -2333,21 +2528,21 @@ dependencies = [
|
|
|
2333
2528
|
]
|
|
2334
2529
|
|
|
2335
2530
|
[[package]]
|
|
2336
|
-
name = "
|
|
2337
|
-
version = "1.0.
|
|
2531
|
+
name = "sfa"
|
|
2532
|
+
version = "1.0.0"
|
|
2338
2533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
|
-
checksum = "
|
|
2534
|
+
checksum = "a1296838937cab56cd6c4eeeb8718ec777383700c33f060e2869867bd01d1175"
|
|
2535
|
+
dependencies = [
|
|
2536
|
+
"byteorder-lite",
|
|
2537
|
+
"log",
|
|
2538
|
+
"xxhash-rust",
|
|
2539
|
+
]
|
|
2340
2540
|
|
|
2341
2541
|
[[package]]
|
|
2342
|
-
name = "
|
|
2343
|
-
version = "0.
|
|
2542
|
+
name = "sha1_smol"
|
|
2543
|
+
version = "1.0.1"
|
|
2344
2544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
|
-
checksum = "
|
|
2346
|
-
dependencies = [
|
|
2347
|
-
"cfg-if",
|
|
2348
|
-
"cpufeatures 0.2.17",
|
|
2349
|
-
"digest 0.10.7",
|
|
2350
|
-
]
|
|
2545
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
2351
2546
|
|
|
2352
2547
|
[[package]]
|
|
2353
2548
|
name = "sha2"
|
|
@@ -2357,7 +2552,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
2357
2552
|
dependencies = [
|
|
2358
2553
|
"cfg-if",
|
|
2359
2554
|
"cpufeatures 0.3.0",
|
|
2360
|
-
"digest
|
|
2555
|
+
"digest",
|
|
2361
2556
|
]
|
|
2362
2557
|
|
|
2363
2558
|
[[package]]
|
|
@@ -2381,11 +2576,17 @@ version = "1.3.0"
|
|
|
2381
2576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
2577
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2383
2578
|
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "shlex"
|
|
2581
|
+
version = "2.0.1"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2584
|
+
|
|
2384
2585
|
[[package]]
|
|
2385
2586
|
name = "simd-json"
|
|
2386
|
-
version = "0.17.
|
|
2587
|
+
version = "0.17.3"
|
|
2387
2588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
-
checksum = "
|
|
2589
|
+
checksum = "e32d7ab2678282d21e53374fbead7119b7eacbede73685dcaac472870a29a11c"
|
|
2389
2590
|
dependencies = [
|
|
2390
2591
|
"halfbrown",
|
|
2391
2592
|
"ref-cast",
|
|
@@ -2409,15 +2610,15 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
2409
2610
|
|
|
2410
2611
|
[[package]]
|
|
2411
2612
|
name = "smallvec"
|
|
2412
|
-
version = "1.15.
|
|
2613
|
+
version = "1.15.2"
|
|
2413
2614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
-
checksum = "
|
|
2615
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2415
2616
|
|
|
2416
2617
|
[[package]]
|
|
2417
2618
|
name = "snap"
|
|
2418
|
-
version = "1.1.
|
|
2619
|
+
version = "1.1.2"
|
|
2419
2620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
-
checksum = "
|
|
2621
|
+
checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886"
|
|
2421
2622
|
|
|
2422
2623
|
[[package]]
|
|
2423
2624
|
name = "socket2"
|
|
@@ -2431,14 +2632,23 @@ dependencies = [
|
|
|
2431
2632
|
|
|
2432
2633
|
[[package]]
|
|
2433
2634
|
name = "socket2"
|
|
2434
|
-
version = "0.6.
|
|
2635
|
+
version = "0.6.5"
|
|
2435
2636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
-
checksum = "
|
|
2637
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
2437
2638
|
dependencies = [
|
|
2438
2639
|
"libc",
|
|
2439
2640
|
"windows-sys 0.61.2",
|
|
2440
2641
|
]
|
|
2441
2642
|
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "spin"
|
|
2645
|
+
version = "0.9.9"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
|
|
2648
|
+
dependencies = [
|
|
2649
|
+
"lock_api",
|
|
2650
|
+
]
|
|
2651
|
+
|
|
2442
2652
|
[[package]]
|
|
2443
2653
|
name = "stable_deref_trait"
|
|
2444
2654
|
version = "1.2.1"
|
|
@@ -2474,9 +2684,9 @@ dependencies = [
|
|
|
2474
2684
|
|
|
2475
2685
|
[[package]]
|
|
2476
2686
|
name = "syn"
|
|
2477
|
-
version = "2.0.
|
|
2687
|
+
version = "2.0.119"
|
|
2478
2688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
-
checksum = "
|
|
2689
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
2480
2690
|
dependencies = [
|
|
2481
2691
|
"proc-macro2",
|
|
2482
2692
|
"quote",
|
|
@@ -2509,6 +2719,19 @@ version = "1.0.1"
|
|
|
2509
2719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
2720
|
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
2511
2721
|
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "tempfile"
|
|
2724
|
+
version = "3.27.0"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2727
|
+
dependencies = [
|
|
2728
|
+
"fastrand",
|
|
2729
|
+
"getrandom 0.4.3",
|
|
2730
|
+
"once_cell",
|
|
2731
|
+
"rustix",
|
|
2732
|
+
"windows-sys 0.61.2",
|
|
2733
|
+
]
|
|
2734
|
+
|
|
2512
2735
|
[[package]]
|
|
2513
2736
|
name = "thiserror"
|
|
2514
2737
|
version = "2.0.18"
|
|
@@ -2531,9 +2754,9 @@ dependencies = [
|
|
|
2531
2754
|
|
|
2532
2755
|
[[package]]
|
|
2533
2756
|
name = "thread_local"
|
|
2534
|
-
version = "1.1.
|
|
2757
|
+
version = "1.1.10"
|
|
2535
2758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
-
checksum = "
|
|
2759
|
+
checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
|
|
2537
2760
|
dependencies = [
|
|
2538
2761
|
"cfg-if",
|
|
2539
2762
|
]
|
|
@@ -2550,16 +2773,16 @@ dependencies = [
|
|
|
2550
2773
|
|
|
2551
2774
|
[[package]]
|
|
2552
2775
|
name = "tokio"
|
|
2553
|
-
version = "1.52.
|
|
2776
|
+
version = "1.52.4"
|
|
2554
2777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2555
|
-
checksum = "
|
|
2778
|
+
checksum = "317fafbbe3f02fc663dad00ea6186197de963cd4190e86a26d8d0fae095539af"
|
|
2556
2779
|
dependencies = [
|
|
2557
2780
|
"bytes",
|
|
2558
2781
|
"libc",
|
|
2559
2782
|
"mio",
|
|
2560
2783
|
"parking_lot",
|
|
2561
2784
|
"pin-project-lite",
|
|
2562
|
-
"socket2 0.6.
|
|
2785
|
+
"socket2 0.6.5",
|
|
2563
2786
|
"tokio-macros",
|
|
2564
2787
|
"windows-sys 0.61.2",
|
|
2565
2788
|
]
|
|
@@ -2612,9 +2835,9 @@ dependencies = [
|
|
|
2612
2835
|
|
|
2613
2836
|
[[package]]
|
|
2614
2837
|
name = "toml_edit"
|
|
2615
|
-
version = "0.25.
|
|
2838
|
+
version = "0.25.13+spec-1.1.0"
|
|
2616
2839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
-
checksum = "
|
|
2840
|
+
checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
|
|
2618
2841
|
dependencies = [
|
|
2619
2842
|
"indexmap",
|
|
2620
2843
|
"toml_datetime",
|
|
@@ -2668,6 +2891,17 @@ dependencies = [
|
|
|
2668
2891
|
"tonic",
|
|
2669
2892
|
]
|
|
2670
2893
|
|
|
2894
|
+
[[package]]
|
|
2895
|
+
name = "tonic-types"
|
|
2896
|
+
version = "0.14.6"
|
|
2897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
+
checksum = "73ab1b02061f83d519bba3caa167f88f261ef05720ab8ebc954ade70de3348e8"
|
|
2899
|
+
dependencies = [
|
|
2900
|
+
"prost",
|
|
2901
|
+
"prost-types",
|
|
2902
|
+
"tonic",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
2671
2905
|
[[package]]
|
|
2672
2906
|
name = "tower"
|
|
2673
2907
|
version = "0.5.3"
|
|
@@ -2689,9 +2923,9 @@ dependencies = [
|
|
|
2689
2923
|
|
|
2690
2924
|
[[package]]
|
|
2691
2925
|
name = "tower-http"
|
|
2692
|
-
version = "0.6.
|
|
2926
|
+
version = "0.6.11"
|
|
2693
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
-
checksum = "
|
|
2928
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
2695
2929
|
dependencies = [
|
|
2696
2930
|
"bitflags",
|
|
2697
2931
|
"bytes",
|
|
@@ -2763,9 +2997,9 @@ dependencies = [
|
|
|
2763
2997
|
|
|
2764
2998
|
[[package]]
|
|
2765
2999
|
name = "tracing-opentelemetry"
|
|
2766
|
-
version = "0.
|
|
3000
|
+
version = "0.33.0"
|
|
2767
3001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
-
checksum = "
|
|
3002
|
+
checksum = "adbc64cba7137545b8044cb1fe9814f7aacf3c6b5f9b45be8bb5db538befdb26"
|
|
2769
3003
|
dependencies = [
|
|
2770
3004
|
"js-sys",
|
|
2771
3005
|
"opentelemetry",
|
|
@@ -2822,9 +3056,9 @@ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
|
2822
3056
|
|
|
2823
3057
|
[[package]]
|
|
2824
3058
|
name = "typenum"
|
|
2825
|
-
version = "1.20.
|
|
3059
|
+
version = "1.20.1"
|
|
2826
3060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
-
checksum = "
|
|
3061
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
2828
3062
|
|
|
2829
3063
|
[[package]]
|
|
2830
3064
|
name = "unarray"
|
|
@@ -2833,16 +3067,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2833
3067
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
2834
3068
|
|
|
2835
3069
|
[[package]]
|
|
2836
|
-
name = "
|
|
2837
|
-
version = "
|
|
3070
|
+
name = "unicase"
|
|
3071
|
+
version = "2.9.0"
|
|
2838
3072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
-
checksum = "
|
|
3073
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
2840
3074
|
|
|
2841
3075
|
[[package]]
|
|
2842
|
-
name = "unicode-
|
|
2843
|
-
version = "0.
|
|
3076
|
+
name = "unicode-ident"
|
|
3077
|
+
version = "1.0.24"
|
|
2844
3078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
-
checksum = "
|
|
3079
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2846
3080
|
|
|
2847
3081
|
[[package]]
|
|
2848
3082
|
name = "url"
|
|
@@ -2864,11 +3098,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
2864
3098
|
|
|
2865
3099
|
[[package]]
|
|
2866
3100
|
name = "uuid"
|
|
2867
|
-
version = "1.
|
|
3101
|
+
version = "1.24.0"
|
|
2868
3102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
-
checksum = "
|
|
3103
|
+
checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
|
|
2870
3104
|
dependencies = [
|
|
2871
|
-
"getrandom 0.4.
|
|
3105
|
+
"getrandom 0.4.3",
|
|
2872
3106
|
"js-sys",
|
|
2873
3107
|
"sha1_smol",
|
|
2874
3108
|
"wasm-bindgen",
|
|
@@ -2892,13 +3126,12 @@ dependencies = [
|
|
|
2892
3126
|
|
|
2893
3127
|
[[package]]
|
|
2894
3128
|
name = "validator_derive"
|
|
2895
|
-
version = "0.20.
|
|
3129
|
+
version = "0.20.1"
|
|
2896
3130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
-
checksum = "
|
|
3131
|
+
checksum = "240e4b81c20a1d6d50d1d7265c658dfbd204e8b9ac4d80f3c931f39462196335"
|
|
2898
3132
|
dependencies = [
|
|
2899
|
-
"darling",
|
|
2900
|
-
"
|
|
2901
|
-
"proc-macro-error2",
|
|
3133
|
+
"darling 0.23.0",
|
|
3134
|
+
"proc-macro-error3",
|
|
2902
3135
|
"proc-macro2",
|
|
2903
3136
|
"quote",
|
|
2904
3137
|
"syn",
|
|
@@ -2912,9 +3145,9 @@ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
|
2912
3145
|
|
|
2913
3146
|
[[package]]
|
|
2914
3147
|
name = "value-trait"
|
|
2915
|
-
version = "0.12.
|
|
3148
|
+
version = "0.12.2"
|
|
2916
3149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2917
|
-
checksum = "
|
|
3150
|
+
checksum = "f3f4b4a98dfe54bc9ed3641af7ffcb837240269627dbd5cb047d13daa39736cc"
|
|
2918
3151
|
dependencies = [
|
|
2919
3152
|
"float-cmp",
|
|
2920
3153
|
"halfbrown",
|
|
@@ -2922,6 +3155,12 @@ dependencies = [
|
|
|
2922
3155
|
"ryu",
|
|
2923
3156
|
]
|
|
2924
3157
|
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "varint-rs"
|
|
3160
|
+
version = "2.2.1"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "bfa6c38708f6257f1ec2ca7e5a11f9bbf58a27d7060078b6b333624968183d96"
|
|
3163
|
+
|
|
2925
3164
|
[[package]]
|
|
2926
3165
|
name = "vcpkg"
|
|
2927
3166
|
version = "0.2.15"
|
|
@@ -2970,20 +3209,11 @@ dependencies = [
|
|
|
2970
3209
|
|
|
2971
3210
|
[[package]]
|
|
2972
3211
|
name = "wasip2"
|
|
2973
|
-
version = "1.0.
|
|
3212
|
+
version = "1.0.4+wasi-0.2.12"
|
|
2974
3213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
-
checksum = "
|
|
3214
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
2976
3215
|
dependencies = [
|
|
2977
|
-
"wit-bindgen
|
|
2978
|
-
]
|
|
2979
|
-
|
|
2980
|
-
[[package]]
|
|
2981
|
-
name = "wasip3"
|
|
2982
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2983
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
-
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2985
|
-
dependencies = [
|
|
2986
|
-
"wit-bindgen 0.51.0",
|
|
3216
|
+
"wit-bindgen",
|
|
2987
3217
|
]
|
|
2988
3218
|
|
|
2989
3219
|
[[package]]
|
|
@@ -2997,9 +3227,9 @@ dependencies = [
|
|
|
2997
3227
|
|
|
2998
3228
|
[[package]]
|
|
2999
3229
|
name = "wasm-bindgen"
|
|
3000
|
-
version = "0.2.
|
|
3230
|
+
version = "0.2.126"
|
|
3001
3231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
-
checksum = "
|
|
3232
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
3003
3233
|
dependencies = [
|
|
3004
3234
|
"cfg-if",
|
|
3005
3235
|
"once_cell",
|
|
@@ -3010,9 +3240,9 @@ dependencies = [
|
|
|
3010
3240
|
|
|
3011
3241
|
[[package]]
|
|
3012
3242
|
name = "wasm-bindgen-futures"
|
|
3013
|
-
version = "0.4.
|
|
3243
|
+
version = "0.4.76"
|
|
3014
3244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
-
checksum = "
|
|
3245
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
3016
3246
|
dependencies = [
|
|
3017
3247
|
"js-sys",
|
|
3018
3248
|
"wasm-bindgen",
|
|
@@ -3020,9 +3250,9 @@ dependencies = [
|
|
|
3020
3250
|
|
|
3021
3251
|
[[package]]
|
|
3022
3252
|
name = "wasm-bindgen-macro"
|
|
3023
|
-
version = "0.2.
|
|
3253
|
+
version = "0.2.126"
|
|
3024
3254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
-
checksum = "
|
|
3255
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
3026
3256
|
dependencies = [
|
|
3027
3257
|
"quote",
|
|
3028
3258
|
"wasm-bindgen-macro-support",
|
|
@@ -3030,9 +3260,9 @@ dependencies = [
|
|
|
3030
3260
|
|
|
3031
3261
|
[[package]]
|
|
3032
3262
|
name = "wasm-bindgen-macro-support"
|
|
3033
|
-
version = "0.2.
|
|
3263
|
+
version = "0.2.126"
|
|
3034
3264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
-
checksum = "
|
|
3265
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
3036
3266
|
dependencies = [
|
|
3037
3267
|
"bumpalo",
|
|
3038
3268
|
"proc-macro2",
|
|
@@ -3043,52 +3273,18 @@ dependencies = [
|
|
|
3043
3273
|
|
|
3044
3274
|
[[package]]
|
|
3045
3275
|
name = "wasm-bindgen-shared"
|
|
3046
|
-
version = "0.2.
|
|
3276
|
+
version = "0.2.126"
|
|
3047
3277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
-
checksum = "
|
|
3278
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
3049
3279
|
dependencies = [
|
|
3050
3280
|
"unicode-ident",
|
|
3051
3281
|
]
|
|
3052
3282
|
|
|
3053
|
-
[[package]]
|
|
3054
|
-
name = "wasm-encoder"
|
|
3055
|
-
version = "0.244.0"
|
|
3056
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3058
|
-
dependencies = [
|
|
3059
|
-
"leb128fmt",
|
|
3060
|
-
"wasmparser",
|
|
3061
|
-
]
|
|
3062
|
-
|
|
3063
|
-
[[package]]
|
|
3064
|
-
name = "wasm-metadata"
|
|
3065
|
-
version = "0.244.0"
|
|
3066
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3068
|
-
dependencies = [
|
|
3069
|
-
"anyhow",
|
|
3070
|
-
"indexmap",
|
|
3071
|
-
"wasm-encoder",
|
|
3072
|
-
"wasmparser",
|
|
3073
|
-
]
|
|
3074
|
-
|
|
3075
|
-
[[package]]
|
|
3076
|
-
name = "wasmparser"
|
|
3077
|
-
version = "0.244.0"
|
|
3078
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3080
|
-
dependencies = [
|
|
3081
|
-
"bitflags",
|
|
3082
|
-
"hashbrown 0.15.5",
|
|
3083
|
-
"indexmap",
|
|
3084
|
-
"semver",
|
|
3085
|
-
]
|
|
3086
|
-
|
|
3087
3283
|
[[package]]
|
|
3088
3284
|
name = "web-sys"
|
|
3089
|
-
version = "0.3.
|
|
3285
|
+
version = "0.3.103"
|
|
3090
3286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
-
checksum = "
|
|
3287
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
3092
3288
|
dependencies = [
|
|
3093
3289
|
"js-sys",
|
|
3094
3290
|
"wasm-bindgen",
|
|
@@ -3291,107 +3487,19 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
3291
3487
|
|
|
3292
3488
|
[[package]]
|
|
3293
3489
|
name = "winnow"
|
|
3294
|
-
version = "1.0.
|
|
3490
|
+
version = "1.0.4"
|
|
3295
3491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
-
checksum = "
|
|
3492
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
3297
3493
|
dependencies = [
|
|
3298
3494
|
"memchr",
|
|
3299
3495
|
]
|
|
3300
3496
|
|
|
3301
|
-
[[package]]
|
|
3302
|
-
name = "wit-bindgen"
|
|
3303
|
-
version = "0.51.0"
|
|
3304
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3305
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3306
|
-
dependencies = [
|
|
3307
|
-
"wit-bindgen-rust-macro",
|
|
3308
|
-
]
|
|
3309
|
-
|
|
3310
3497
|
[[package]]
|
|
3311
3498
|
name = "wit-bindgen"
|
|
3312
3499
|
version = "0.57.1"
|
|
3313
3500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
3501
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3315
3502
|
|
|
3316
|
-
[[package]]
|
|
3317
|
-
name = "wit-bindgen-core"
|
|
3318
|
-
version = "0.51.0"
|
|
3319
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3321
|
-
dependencies = [
|
|
3322
|
-
"anyhow",
|
|
3323
|
-
"heck",
|
|
3324
|
-
"wit-parser",
|
|
3325
|
-
]
|
|
3326
|
-
|
|
3327
|
-
[[package]]
|
|
3328
|
-
name = "wit-bindgen-rust"
|
|
3329
|
-
version = "0.51.0"
|
|
3330
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3332
|
-
dependencies = [
|
|
3333
|
-
"anyhow",
|
|
3334
|
-
"heck",
|
|
3335
|
-
"indexmap",
|
|
3336
|
-
"prettyplease",
|
|
3337
|
-
"syn",
|
|
3338
|
-
"wasm-metadata",
|
|
3339
|
-
"wit-bindgen-core",
|
|
3340
|
-
"wit-component",
|
|
3341
|
-
]
|
|
3342
|
-
|
|
3343
|
-
[[package]]
|
|
3344
|
-
name = "wit-bindgen-rust-macro"
|
|
3345
|
-
version = "0.51.0"
|
|
3346
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3348
|
-
dependencies = [
|
|
3349
|
-
"anyhow",
|
|
3350
|
-
"prettyplease",
|
|
3351
|
-
"proc-macro2",
|
|
3352
|
-
"quote",
|
|
3353
|
-
"syn",
|
|
3354
|
-
"wit-bindgen-core",
|
|
3355
|
-
"wit-bindgen-rust",
|
|
3356
|
-
]
|
|
3357
|
-
|
|
3358
|
-
[[package]]
|
|
3359
|
-
name = "wit-component"
|
|
3360
|
-
version = "0.244.0"
|
|
3361
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3363
|
-
dependencies = [
|
|
3364
|
-
"anyhow",
|
|
3365
|
-
"bitflags",
|
|
3366
|
-
"indexmap",
|
|
3367
|
-
"log",
|
|
3368
|
-
"serde",
|
|
3369
|
-
"serde_derive",
|
|
3370
|
-
"serde_json",
|
|
3371
|
-
"wasm-encoder",
|
|
3372
|
-
"wasm-metadata",
|
|
3373
|
-
"wasmparser",
|
|
3374
|
-
"wit-parser",
|
|
3375
|
-
]
|
|
3376
|
-
|
|
3377
|
-
[[package]]
|
|
3378
|
-
name = "wit-parser"
|
|
3379
|
-
version = "0.244.0"
|
|
3380
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
-
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3382
|
-
dependencies = [
|
|
3383
|
-
"anyhow",
|
|
3384
|
-
"id-arena",
|
|
3385
|
-
"indexmap",
|
|
3386
|
-
"log",
|
|
3387
|
-
"semver",
|
|
3388
|
-
"serde",
|
|
3389
|
-
"serde_derive",
|
|
3390
|
-
"serde_json",
|
|
3391
|
-
"unicode-xid",
|
|
3392
|
-
"wasmparser",
|
|
3393
|
-
]
|
|
3394
|
-
|
|
3395
3503
|
[[package]]
|
|
3396
3504
|
name = "writeable"
|
|
3397
3505
|
version = "0.6.3"
|
|
@@ -3400,15 +3508,15 @@ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
|
3400
3508
|
|
|
3401
3509
|
[[package]]
|
|
3402
3510
|
name = "xxhash-rust"
|
|
3403
|
-
version = "0.8.
|
|
3511
|
+
version = "0.8.17"
|
|
3404
3512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
-
checksum = "
|
|
3513
|
+
checksum = "985eec839aaf2a1270af8f4ebcf63cf9401cfd90f0902f97c28d9f104ffbde72"
|
|
3406
3514
|
|
|
3407
3515
|
[[package]]
|
|
3408
3516
|
name = "yoke"
|
|
3409
|
-
version = "0.8.
|
|
3517
|
+
version = "0.8.3"
|
|
3410
3518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
-
checksum = "
|
|
3519
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
3412
3520
|
dependencies = [
|
|
3413
3521
|
"stable_deref_trait",
|
|
3414
3522
|
"yoke-derive",
|
|
@@ -3429,18 +3537,18 @@ dependencies = [
|
|
|
3429
3537
|
|
|
3430
3538
|
[[package]]
|
|
3431
3539
|
name = "zerocopy"
|
|
3432
|
-
version = "0.8.
|
|
3540
|
+
version = "0.8.54"
|
|
3433
3541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3434
|
-
checksum = "
|
|
3542
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
3435
3543
|
dependencies = [
|
|
3436
3544
|
"zerocopy-derive",
|
|
3437
3545
|
]
|
|
3438
3546
|
|
|
3439
3547
|
[[package]]
|
|
3440
3548
|
name = "zerocopy-derive"
|
|
3441
|
-
version = "0.8.
|
|
3549
|
+
version = "0.8.54"
|
|
3442
3550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
-
checksum = "
|
|
3551
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
3444
3552
|
dependencies = [
|
|
3445
3553
|
"proc-macro2",
|
|
3446
3554
|
"quote",
|
|
@@ -3449,9 +3557,9 @@ dependencies = [
|
|
|
3449
3557
|
|
|
3450
3558
|
[[package]]
|
|
3451
3559
|
name = "zerofrom"
|
|
3452
|
-
version = "0.1.
|
|
3560
|
+
version = "0.1.8"
|
|
3453
3561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
|
-
checksum = "
|
|
3562
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3455
3563
|
dependencies = [
|
|
3456
3564
|
"zerofrom-derive",
|
|
3457
3565
|
]
|
|
@@ -3503,6 +3611,34 @@ dependencies = [
|
|
|
3503
3611
|
|
|
3504
3612
|
[[package]]
|
|
3505
3613
|
name = "zmij"
|
|
3506
|
-
version = "1.0.
|
|
3614
|
+
version = "1.0.23"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
3617
|
+
|
|
3618
|
+
[[package]]
|
|
3619
|
+
name = "zstd"
|
|
3620
|
+
version = "0.13.3"
|
|
3507
3621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
-
checksum = "
|
|
3622
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3623
|
+
dependencies = [
|
|
3624
|
+
"zstd-safe",
|
|
3625
|
+
]
|
|
3626
|
+
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "zstd-safe"
|
|
3629
|
+
version = "7.2.4"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3632
|
+
dependencies = [
|
|
3633
|
+
"zstd-sys",
|
|
3634
|
+
]
|
|
3635
|
+
|
|
3636
|
+
[[package]]
|
|
3637
|
+
name = "zstd-sys"
|
|
3638
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3640
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3641
|
+
dependencies = [
|
|
3642
|
+
"cc",
|
|
3643
|
+
"pkg-config",
|
|
3644
|
+
]
|