context-server 0.1.4__tar.gz → 0.1.5__tar.gz

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.
Files changed (24) hide show
  1. {context_server-0.1.4 → context_server-0.1.5}/Cargo.lock +1001 -17
  2. {context_server-0.1.4 → context_server-0.1.5}/Cargo.toml +5 -1
  3. {context_server-0.1.4 → context_server-0.1.5}/PKG-INFO +30 -6
  4. {context_server-0.1.4 → context_server-0.1.5}/PLAN.md +25 -11
  5. {context_server-0.1.4 → context_server-0.1.5}/README.md +29 -5
  6. {context_server-0.1.4 → context_server-0.1.5}/pyproject.toml +1 -1
  7. context_server-0.1.5/src/bm25.rs +159 -0
  8. {context_server-0.1.4 → context_server-0.1.5}/src/embed.rs +25 -3
  9. {context_server-0.1.4 → context_server-0.1.5}/src/index.rs +94 -3
  10. {context_server-0.1.4 → context_server-0.1.5}/src/main.rs +40 -13
  11. {context_server-0.1.4 → context_server-0.1.5}/src/mcp.rs +45 -15
  12. context_server-0.1.5/src/remote.rs +433 -0
  13. context_server-0.1.5/src/search.rs +240 -0
  14. {context_server-0.1.4 → context_server-0.1.5}/src/store.rs +80 -5
  15. context_server-0.1.4/src/search.rs +0 -101
  16. {context_server-0.1.4 → context_server-0.1.5}/.cargo/config.toml.example +0 -0
  17. {context_server-0.1.4 → context_server-0.1.5}/.github/workflows/release.yml +0 -0
  18. {context_server-0.1.4 → context_server-0.1.5}/.gitignore +0 -0
  19. {context_server-0.1.4 → context_server-0.1.5}/Containerfile +0 -0
  20. {context_server-0.1.4 → context_server-0.1.5}/LICENSE +0 -0
  21. {context_server-0.1.4 → context_server-0.1.5}/examples/sample-docs/README.md +0 -0
  22. {context_server-0.1.4 → context_server-0.1.5}/examples/sample-docs/onboarding.md +0 -0
  23. {context_server-0.1.4 → context_server-0.1.5}/examples/sample-docs/release-process.md +0 -0
  24. {context_server-0.1.4 → context_server-0.1.5}/scripts/build-wheel.sh +0 -0
@@ -218,6 +218,29 @@ dependencies = [
218
218
  "arrayvec",
219
219
  ]
220
220
 
221
+ [[package]]
222
+ name = "aws-lc-rs"
223
+ version = "1.17.1"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
226
+ dependencies = [
227
+ "aws-lc-sys",
228
+ "zeroize",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "aws-lc-sys"
233
+ version = "0.42.0"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
236
+ dependencies = [
237
+ "cc",
238
+ "cmake",
239
+ "dunce",
240
+ "fs_extra",
241
+ "pkg-config",
242
+ ]
243
+
221
244
  [[package]]
222
245
  name = "base64"
223
246
  version = "0.13.1"
@@ -257,6 +280,24 @@ dependencies = [
257
280
  "no_std_io2",
258
281
  ]
259
282
 
283
+ [[package]]
284
+ name = "block-buffer"
285
+ version = "0.12.1"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
288
+ dependencies = [
289
+ "hybrid-array",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "bs58"
294
+ version = "0.5.1"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
297
+ dependencies = [
298
+ "tinyvec",
299
+ ]
300
+
260
301
  [[package]]
261
302
  name = "built"
262
303
  version = "0.8.1"
@@ -292,6 +333,9 @@ name = "bytes"
292
333
  version = "1.12.1"
293
334
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
335
  checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
336
+ dependencies = [
337
+ "serde",
338
+ ]
295
339
 
296
340
  [[package]]
297
341
  name = "castaway"
@@ -320,6 +364,23 @@ version = "1.0.4"
320
364
  source = "registry+https://github.com/rust-lang/crates.io-index"
321
365
  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
322
366
 
367
+ [[package]]
368
+ name = "cfg_aliases"
369
+ version = "0.2.1"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
372
+
373
+ [[package]]
374
+ name = "chacha20"
375
+ version = "0.10.1"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
378
+ dependencies = [
379
+ "cfg-if",
380
+ "cpufeatures",
381
+ "rand_core 0.10.1",
382
+ ]
383
+
323
384
  [[package]]
324
385
  name = "chrono"
325
386
  version = "0.4.45"
@@ -374,6 +435,21 @@ version = "1.1.0"
374
435
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
436
  checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
376
437
 
438
+ [[package]]
439
+ name = "cmake"
440
+ version = "0.1.58"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
443
+ dependencies = [
444
+ "cc",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "cmov"
449
+ version = "0.5.4"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
452
+
377
453
  [[package]]
378
454
  name = "color_quant"
379
455
  version = "1.1.0"
@@ -386,6 +462,16 @@ version = "1.0.5"
386
462
  source = "registry+https://github.com/rust-lang/crates.io-index"
387
463
  checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
388
464
 
465
+ [[package]]
466
+ name = "combine"
467
+ version = "4.6.7"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
470
+ dependencies = [
471
+ "bytes",
472
+ "memchr",
473
+ ]
474
+
389
475
  [[package]]
390
476
  name = "compact_str"
391
477
  version = "0.9.1"
@@ -413,19 +499,29 @@ dependencies = [
413
499
  "windows-sys 0.61.2",
414
500
  ]
415
501
 
502
+ [[package]]
503
+ name = "const-oid"
504
+ version = "0.10.2"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
507
+
416
508
  [[package]]
417
509
  name = "context-server"
418
- version = "0.1.4"
510
+ version = "0.1.5"
419
511
  dependencies = [
420
512
  "anyhow",
421
513
  "clap",
514
+ "dirs",
422
515
  "fastembed",
516
+ "google-cloud-storage",
517
+ "hex",
423
518
  "regex",
424
519
  "rmcp",
425
520
  "rusqlite",
426
521
  "schemars 0.8.22",
427
522
  "serde",
428
523
  "serde_json",
524
+ "sha2",
429
525
  "tempfile",
430
526
  "tokio",
431
527
  "tracing",
@@ -453,7 +549,7 @@ dependencies = [
453
549
  "cookie",
454
550
  "document-features",
455
551
  "idna",
456
- "indexmap",
552
+ "indexmap 2.14.0",
457
553
  "log",
458
554
  "serde",
459
555
  "serde_derive",
@@ -488,6 +584,24 @@ version = "0.8.7"
488
584
  source = "registry+https://github.com/rust-lang/crates.io-index"
489
585
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
490
586
 
587
+ [[package]]
588
+ name = "cpufeatures"
589
+ version = "0.3.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
592
+ dependencies = [
593
+ "libc",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "crc32c"
598
+ version = "0.6.8"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
601
+ dependencies = [
602
+ "rustc_version",
603
+ ]
604
+
491
605
  [[package]]
492
606
  name = "crc32fast"
493
607
  version = "1.5.0"
@@ -528,6 +642,24 @@ version = "0.2.4"
528
642
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
643
  checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
530
644
 
645
+ [[package]]
646
+ name = "crypto-common"
647
+ version = "0.2.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
650
+ dependencies = [
651
+ "hybrid-array",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "ctutils"
656
+ version = "0.4.2"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
659
+ dependencies = [
660
+ "cmov",
661
+ ]
662
+
531
663
  [[package]]
532
664
  name = "darling"
533
665
  version = "0.20.11"
@@ -621,6 +753,9 @@ name = "deranged"
621
753
  version = "0.5.8"
622
754
  source = "registry+https://github.com/rust-lang/crates.io-index"
623
755
  checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
756
+ dependencies = [
757
+ "serde_core",
758
+ ]
624
759
 
625
760
  [[package]]
626
761
  name = "derive_builder"
@@ -653,6 +788,18 @@ dependencies = [
653
788
  "syn",
654
789
  ]
655
790
 
791
+ [[package]]
792
+ name = "digest"
793
+ version = "0.11.3"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
796
+ dependencies = [
797
+ "block-buffer",
798
+ "const-oid",
799
+ "crypto-common",
800
+ "ctutils",
801
+ ]
802
+
656
803
  [[package]]
657
804
  name = "dirs"
658
805
  version = "6.0.0"
@@ -694,6 +841,12 @@ dependencies = [
694
841
  "litrs",
695
842
  ]
696
843
 
844
+ [[package]]
845
+ name = "dunce"
846
+ version = "1.0.5"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
849
+
697
850
  [[package]]
698
851
  name = "dyn-clone"
699
852
  version = "1.0.20"
@@ -882,6 +1035,12 @@ dependencies = [
882
1035
  "percent-encoding",
883
1036
  ]
884
1037
 
1038
+ [[package]]
1039
+ name = "fs_extra"
1040
+ version = "1.3.0"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1043
+
885
1044
  [[package]]
886
1045
  name = "futures"
887
1046
  version = "0.3.32"
@@ -977,8 +1136,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
977
1136
  checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
978
1137
  dependencies = [
979
1138
  "cfg-if",
1139
+ "js-sys",
980
1140
  "libc",
981
1141
  "wasi",
1142
+ "wasm-bindgen",
982
1143
  ]
983
1144
 
984
1145
  [[package]]
@@ -1000,8 +1161,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
1161
  checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1001
1162
  dependencies = [
1002
1163
  "cfg-if",
1164
+ "js-sys",
1003
1165
  "libc",
1004
1166
  "r-efi 6.0.0",
1167
+ "rand_core 0.10.1",
1168
+ "wasm-bindgen",
1005
1169
  ]
1006
1170
 
1007
1171
  [[package]]
@@ -1014,6 +1178,225 @@ dependencies = [
1014
1178
  "weezl",
1015
1179
  ]
1016
1180
 
1181
+ [[package]]
1182
+ name = "google-cloud-auth"
1183
+ version = "1.14.0"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "a3494870d06f3cbbb3561ada6f234982549e3a2fb31e719ef258e6eadb9ae09a"
1186
+ dependencies = [
1187
+ "async-trait",
1188
+ "base64 0.22.1",
1189
+ "bytes",
1190
+ "chrono",
1191
+ "google-cloud-gax",
1192
+ "hex",
1193
+ "hmac",
1194
+ "http",
1195
+ "reqwest 0.13.4",
1196
+ "rustc_version",
1197
+ "rustls",
1198
+ "rustls-pki-types",
1199
+ "serde",
1200
+ "serde_json",
1201
+ "sha2",
1202
+ "thiserror",
1203
+ "time",
1204
+ "tokio",
1205
+ "url",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "google-cloud-gax"
1210
+ version = "1.12.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "3103a4a9013f1aed573ca56e19a9680b0211643a99ea85caf524b397d6be8be3"
1213
+ dependencies = [
1214
+ "bytes",
1215
+ "futures",
1216
+ "google-cloud-rpc",
1217
+ "google-cloud-wkt",
1218
+ "http",
1219
+ "pin-project",
1220
+ "rand 0.10.2",
1221
+ "serde",
1222
+ "serde_json",
1223
+ "thiserror",
1224
+ "tokio",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "google-cloud-gax-internal"
1229
+ version = "0.7.15"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "c0df265fba091ed7e00ecd0755009423310163f8b52820f007b6b4d97f4c6617"
1232
+ dependencies = [
1233
+ "bytes",
1234
+ "futures",
1235
+ "google-cloud-auth",
1236
+ "google-cloud-gax",
1237
+ "google-cloud-rpc",
1238
+ "google-cloud-wkt",
1239
+ "h2",
1240
+ "http",
1241
+ "http-body",
1242
+ "http-body-util",
1243
+ "hyper",
1244
+ "lazy_static",
1245
+ "opentelemetry",
1246
+ "opentelemetry-semantic-conventions",
1247
+ "opentelemetry_sdk",
1248
+ "percent-encoding",
1249
+ "pin-project",
1250
+ "prost",
1251
+ "prost-types",
1252
+ "reqwest 0.13.4",
1253
+ "rustc_version",
1254
+ "serde",
1255
+ "serde_json",
1256
+ "thiserror",
1257
+ "tokio",
1258
+ "tokio-stream",
1259
+ "tonic",
1260
+ "tonic-prost",
1261
+ "tower",
1262
+ "tracing",
1263
+ "tracing-opentelemetry",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "google-cloud-iam-v1"
1268
+ version = "1.11.0"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "34cdf5acc7ef946ee2db7a7f62bd436d8395a6543b4beef110cdc061fcf578bb"
1271
+ dependencies = [
1272
+ "async-trait",
1273
+ "bytes",
1274
+ "google-cloud-gax",
1275
+ "google-cloud-gax-internal",
1276
+ "google-cloud-type",
1277
+ "google-cloud-wkt",
1278
+ "serde",
1279
+ "serde_json",
1280
+ "serde_with",
1281
+ "tracing",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "google-cloud-longrunning"
1286
+ version = "1.12.0"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "1e6ce05df0aea2c08472983ce2bbbed9483cbb637b89ff69a7c4ef94371fe4f2"
1289
+ dependencies = [
1290
+ "async-trait",
1291
+ "bytes",
1292
+ "google-cloud-gax",
1293
+ "google-cloud-gax-internal",
1294
+ "google-cloud-rpc",
1295
+ "google-cloud-wkt",
1296
+ "serde",
1297
+ "serde_json",
1298
+ "serde_with",
1299
+ "tracing",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "google-cloud-lro"
1304
+ version = "1.9.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "cd7cca2b991d619525d72a170ca7f413cb520872702442da22ac9af650a8e786"
1307
+ dependencies = [
1308
+ "google-cloud-gax",
1309
+ "google-cloud-gax-internal",
1310
+ "google-cloud-longrunning",
1311
+ "google-cloud-rpc",
1312
+ "google-cloud-wkt",
1313
+ "serde",
1314
+ "tokio",
1315
+ "tracing",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "google-cloud-rpc"
1320
+ version = "1.6.0"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "e2162c08a89118130979ba261080e960e44cdcb2d6e2ab8ca9b1da245285d353"
1323
+ dependencies = [
1324
+ "bytes",
1325
+ "google-cloud-wkt",
1326
+ "serde",
1327
+ "serde_json",
1328
+ "serde_with",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "google-cloud-storage"
1333
+ version = "1.16.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "dc4b1d78c88db5c2530b12461e373a7d0d3a6caa3f6c1fc14e5d824cf2aeb307"
1336
+ dependencies = [
1337
+ "async-trait",
1338
+ "base64 0.22.1",
1339
+ "bytes",
1340
+ "chrono",
1341
+ "crc32c",
1342
+ "futures",
1343
+ "google-cloud-auth",
1344
+ "google-cloud-gax",
1345
+ "google-cloud-gax-internal",
1346
+ "google-cloud-iam-v1",
1347
+ "google-cloud-longrunning",
1348
+ "google-cloud-lro",
1349
+ "google-cloud-rpc",
1350
+ "google-cloud-type",
1351
+ "google-cloud-wkt",
1352
+ "hex",
1353
+ "http",
1354
+ "http-body",
1355
+ "md5",
1356
+ "percent-encoding",
1357
+ "prost",
1358
+ "prost-types",
1359
+ "serde",
1360
+ "serde_json",
1361
+ "serde_with",
1362
+ "sha2",
1363
+ "thiserror",
1364
+ "tokio",
1365
+ "tokio-stream",
1366
+ "tracing",
1367
+ "url",
1368
+ "uuid",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "google-cloud-type"
1373
+ version = "1.6.0"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "63acc3a92a85f96bab021c3a3e29b53bbacc97651e1b524d4c2991960a63eb82"
1376
+ dependencies = [
1377
+ "bytes",
1378
+ "google-cloud-wkt",
1379
+ "serde",
1380
+ "serde_json",
1381
+ "serde_with",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "google-cloud-wkt"
1386
+ version = "1.6.0"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "46df1fcc3ab69164af3f4199ed21f45b5dbc56d9f03211eb4fa20116d442364b"
1389
+ dependencies = [
1390
+ "base64 0.22.1",
1391
+ "bytes",
1392
+ "serde",
1393
+ "serde_json",
1394
+ "serde_with",
1395
+ "thiserror",
1396
+ "time",
1397
+ "url",
1398
+ ]
1399
+
1017
1400
  [[package]]
1018
1401
  name = "h2"
1019
1402
  version = "0.4.15"
@@ -1026,7 +1409,7 @@ dependencies = [
1026
1409
  "futures-core",
1027
1410
  "futures-sink",
1028
1411
  "http",
1029
- "indexmap",
1412
+ "indexmap 2.14.0",
1030
1413
  "slab",
1031
1414
  "tokio",
1032
1415
  "tokio-util",
@@ -1044,6 +1427,12 @@ dependencies = [
1044
1427
  "zerocopy",
1045
1428
  ]
1046
1429
 
1430
+ [[package]]
1431
+ name = "hashbrown"
1432
+ version = "0.12.3"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1435
+
1047
1436
  [[package]]
1048
1437
  name = "hashbrown"
1049
1438
  version = "0.14.5"
@@ -1087,6 +1476,12 @@ version = "0.5.0"
1087
1476
  source = "registry+https://github.com/rust-lang/crates.io-index"
1088
1477
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1089
1478
 
1479
+ [[package]]
1480
+ name = "hex"
1481
+ version = "0.4.3"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1484
+
1090
1485
  [[package]]
1091
1486
  name = "hf-hub"
1092
1487
  version = "0.5.0"
@@ -1099,8 +1494,8 @@ dependencies = [
1099
1494
  "libc",
1100
1495
  "log",
1101
1496
  "native-tls",
1102
- "rand",
1103
- "reqwest",
1497
+ "rand 0.9.5",
1498
+ "reqwest 0.12.28",
1104
1499
  "serde",
1105
1500
  "serde_json",
1106
1501
  "thiserror",
@@ -1108,6 +1503,15 @@ dependencies = [
1108
1503
  "windows-sys 0.61.2",
1109
1504
  ]
1110
1505
 
1506
+ [[package]]
1507
+ name = "hmac"
1508
+ version = "0.13.0"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1511
+ dependencies = [
1512
+ "digest",
1513
+ ]
1514
+
1111
1515
  [[package]]
1112
1516
  name = "hmac-sha256"
1113
1517
  version = "1.1.14"
@@ -1153,6 +1557,15 @@ version = "1.10.1"
1153
1557
  source = "registry+https://github.com/rust-lang/crates.io-index"
1154
1558
  checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1155
1559
 
1560
+ [[package]]
1561
+ name = "hybrid-array"
1562
+ version = "0.4.13"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
1565
+ dependencies = [
1566
+ "typenum",
1567
+ ]
1568
+
1156
1569
  [[package]]
1157
1570
  name = "hyper"
1158
1571
  version = "1.10.1"
@@ -1189,6 +1602,19 @@ dependencies = [
1189
1602
  "tower-service",
1190
1603
  ]
1191
1604
 
1605
+ [[package]]
1606
+ name = "hyper-timeout"
1607
+ version = "0.5.2"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1610
+ dependencies = [
1611
+ "hyper",
1612
+ "hyper-util",
1613
+ "pin-project-lite",
1614
+ "tokio",
1615
+ "tower-service",
1616
+ ]
1617
+
1192
1618
  [[package]]
1193
1619
  name = "hyper-tls"
1194
1620
  version = "0.6.0"
@@ -1403,6 +1829,17 @@ version = "1.12.2"
1403
1829
  source = "registry+https://github.com/rust-lang/crates.io-index"
1404
1830
  checksum = "89194689a993ab15268672e99e7b0e19da2da3268ac682e8f02d29d4d1434cd7"
1405
1831
 
1832
+ [[package]]
1833
+ name = "indexmap"
1834
+ version = "1.9.3"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1837
+ dependencies = [
1838
+ "autocfg",
1839
+ "hashbrown 0.12.3",
1840
+ "serde",
1841
+ ]
1842
+
1406
1843
  [[package]]
1407
1844
  name = "indexmap"
1408
1845
  version = "2.14.0"
@@ -1411,6 +1848,8 @@ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1411
1848
  dependencies = [
1412
1849
  "equivalent",
1413
1850
  "hashbrown 0.17.1",
1851
+ "serde",
1852
+ "serde_core",
1414
1853
  ]
1415
1854
 
1416
1855
  [[package]]
@@ -1464,6 +1903,55 @@ version = "1.0.18"
1464
1903
  source = "registry+https://github.com/rust-lang/crates.io-index"
1465
1904
  checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1466
1905
 
1906
+ [[package]]
1907
+ name = "jni"
1908
+ version = "0.22.4"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1911
+ dependencies = [
1912
+ "cfg-if",
1913
+ "combine",
1914
+ "jni-macros",
1915
+ "jni-sys",
1916
+ "log",
1917
+ "simd_cesu8",
1918
+ "thiserror",
1919
+ "walkdir",
1920
+ "windows-link",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "jni-macros"
1925
+ version = "0.22.4"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1928
+ dependencies = [
1929
+ "proc-macro2",
1930
+ "quote",
1931
+ "rustc_version",
1932
+ "simd_cesu8",
1933
+ "syn",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "jni-sys"
1938
+ version = "0.4.1"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1941
+ dependencies = [
1942
+ "jni-sys-macros",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "jni-sys-macros"
1947
+ version = "0.4.1"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1950
+ dependencies = [
1951
+ "quote",
1952
+ "syn",
1953
+ ]
1954
+
1467
1955
  [[package]]
1468
1956
  name = "jobserver"
1469
1957
  version = "0.1.35"
@@ -1572,6 +2060,12 @@ dependencies = [
1572
2060
  "imgref",
1573
2061
  ]
1574
2062
 
2063
+ [[package]]
2064
+ name = "lru-slab"
2065
+ version = "0.1.2"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2068
+
1575
2069
  [[package]]
1576
2070
  name = "lzma-rust2"
1577
2071
  version = "0.15.8"
@@ -1623,6 +2117,12 @@ dependencies = [
1623
2117
  "rayon",
1624
2118
  ]
1625
2119
 
2120
+ [[package]]
2121
+ name = "md5"
2122
+ version = "0.8.1"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "7ebb8d8732c6a6df3d8f032a82911cfc747e00efb95cc46e8d0acd5b5b88570c"
2125
+
1626
2126
  [[package]]
1627
2127
  name = "memchr"
1628
2128
  version = "2.8.3"
@@ -1635,6 +2135,16 @@ version = "0.3.17"
1635
2135
  source = "registry+https://github.com/rust-lang/crates.io-index"
1636
2136
  checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1637
2137
 
2138
+ [[package]]
2139
+ name = "mime_guess"
2140
+ version = "2.0.5"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2143
+ dependencies = [
2144
+ "mime",
2145
+ "unicase",
2146
+ ]
2147
+
1638
2148
  [[package]]
1639
2149
  name = "minimal-lexical"
1640
2150
  version = "0.2.1"
@@ -1918,6 +2428,42 @@ dependencies = [
1918
2428
  "vcpkg",
1919
2429
  ]
1920
2430
 
2431
+ [[package]]
2432
+ name = "opentelemetry"
2433
+ version = "0.32.0"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "b0142c63252a9e054e68a4c61a5778f7b14f576274d593f8ce883d191a099682"
2436
+ dependencies = [
2437
+ "futures-core",
2438
+ "futures-sink",
2439
+ "js-sys",
2440
+ "pin-project-lite",
2441
+ "thiserror",
2442
+ "tracing",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "opentelemetry-semantic-conventions"
2447
+ version = "0.32.1"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "c913ac17a6c451661ee255f4625d143e51647ae78ebd969b75e41c4442f4fe47"
2450
+
2451
+ [[package]]
2452
+ name = "opentelemetry_sdk"
2453
+ version = "0.32.1"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "9b59f80e1ac4d5ff7a2db8fb6c80badb7f0f3f858211fba08dd9aaec750894f9"
2456
+ dependencies = [
2457
+ "futures-channel",
2458
+ "futures-executor",
2459
+ "futures-util",
2460
+ "opentelemetry",
2461
+ "percent-encoding",
2462
+ "portable-atomic",
2463
+ "rand 0.9.5",
2464
+ "thiserror",
2465
+ ]
2466
+
1921
2467
  [[package]]
1922
2468
  name = "option-ext"
1923
2469
  version = "0.2.0"
@@ -1981,6 +2527,26 @@ version = "2.3.2"
1981
2527
  source = "registry+https://github.com/rust-lang/crates.io-index"
1982
2528
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1983
2529
 
2530
+ [[package]]
2531
+ name = "pin-project"
2532
+ version = "1.1.13"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
2535
+ dependencies = [
2536
+ "pin-project-internal",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "pin-project-internal"
2541
+ version = "1.1.13"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
2544
+ dependencies = [
2545
+ "proc-macro2",
2546
+ "quote",
2547
+ "syn",
2548
+ ]
2549
+
1984
2550
  [[package]]
1985
2551
  name = "pin-project-lite"
1986
2552
  version = "0.2.17"
@@ -2073,6 +2639,38 @@ dependencies = [
2073
2639
  "syn",
2074
2640
  ]
2075
2641
 
2642
+ [[package]]
2643
+ name = "prost"
2644
+ version = "0.14.4"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
2647
+ dependencies = [
2648
+ "bytes",
2649
+ "prost-derive",
2650
+ ]
2651
+
2652
+ [[package]]
2653
+ name = "prost-derive"
2654
+ version = "0.14.4"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
2657
+ dependencies = [
2658
+ "anyhow",
2659
+ "itertools",
2660
+ "proc-macro2",
2661
+ "quote",
2662
+ "syn",
2663
+ ]
2664
+
2665
+ [[package]]
2666
+ name = "prost-types"
2667
+ version = "0.14.4"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
2670
+ dependencies = [
2671
+ "prost",
2672
+ ]
2673
+
2076
2674
  [[package]]
2077
2675
  name = "pulp"
2078
2676
  version = "0.22.3"
@@ -2103,19 +2701,76 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
2701
  checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
2104
2702
 
2105
2703
  [[package]]
2106
- name = "qoi"
2107
- version = "0.4.1"
2704
+ name = "qoi"
2705
+ version = "0.4.1"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2708
+ dependencies = [
2709
+ "bytemuck",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "quick-error"
2714
+ version = "2.0.1"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2717
+
2718
+ [[package]]
2719
+ name = "quinn"
2720
+ version = "0.11.11"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2723
+ dependencies = [
2724
+ "bytes",
2725
+ "cfg_aliases",
2726
+ "pin-project-lite",
2727
+ "quinn-proto",
2728
+ "quinn-udp",
2729
+ "rustc-hash",
2730
+ "rustls",
2731
+ "socket2",
2732
+ "thiserror",
2733
+ "tokio",
2734
+ "tracing",
2735
+ "web-time",
2736
+ ]
2737
+
2738
+ [[package]]
2739
+ name = "quinn-proto"
2740
+ version = "0.11.16"
2108
2741
  source = "registry+https://github.com/rust-lang/crates.io-index"
2109
- checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2742
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
2110
2743
  dependencies = [
2111
- "bytemuck",
2744
+ "aws-lc-rs",
2745
+ "bytes",
2746
+ "getrandom 0.4.3",
2747
+ "lru-slab",
2748
+ "rand 0.10.2",
2749
+ "rand_pcg",
2750
+ "ring",
2751
+ "rustc-hash",
2752
+ "rustls",
2753
+ "rustls-pki-types",
2754
+ "slab",
2755
+ "thiserror",
2756
+ "tinyvec",
2757
+ "tracing",
2758
+ "web-time",
2112
2759
  ]
2113
2760
 
2114
2761
  [[package]]
2115
- name = "quick-error"
2116
- version = "2.0.1"
2762
+ name = "quinn-udp"
2763
+ version = "0.5.15"
2117
2764
  source = "registry+https://github.com/rust-lang/crates.io-index"
2118
- checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2765
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
2766
+ dependencies = [
2767
+ "cfg_aliases",
2768
+ "libc",
2769
+ "once_cell",
2770
+ "socket2",
2771
+ "tracing",
2772
+ "windows-sys 0.61.2",
2773
+ ]
2119
2774
 
2120
2775
  [[package]]
2121
2776
  name = "quote"
@@ -2145,7 +2800,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
2800
  checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
2146
2801
  dependencies = [
2147
2802
  "rand_chacha",
2148
- "rand_core",
2803
+ "rand_core 0.9.5",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "rand"
2808
+ version = "0.10.2"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2811
+ dependencies = [
2812
+ "chacha20",
2813
+ "getrandom 0.4.3",
2814
+ "rand_core 0.10.1",
2149
2815
  ]
2150
2816
 
2151
2817
  [[package]]
@@ -2155,7 +2821,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
2821
  checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2156
2822
  dependencies = [
2157
2823
  "ppv-lite86",
2158
- "rand_core",
2824
+ "rand_core 0.9.5",
2159
2825
  ]
2160
2826
 
2161
2827
  [[package]]
@@ -2167,6 +2833,21 @@ dependencies = [
2167
2833
  "getrandom 0.3.4",
2168
2834
  ]
2169
2835
 
2836
+ [[package]]
2837
+ name = "rand_core"
2838
+ version = "0.10.1"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2841
+
2842
+ [[package]]
2843
+ name = "rand_pcg"
2844
+ version = "0.10.2"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
2847
+ dependencies = [
2848
+ "rand_core 0.10.1",
2849
+ ]
2850
+
2170
2851
  [[package]]
2171
2852
  name = "rav1e"
2172
2853
  version = "0.8.1"
@@ -2194,7 +2875,7 @@ dependencies = [
2194
2875
  "num-traits",
2195
2876
  "paste",
2196
2877
  "profiling",
2197
- "rand",
2878
+ "rand 0.9.5",
2198
2879
  "rand_chacha",
2199
2880
  "simd_helpers",
2200
2881
  "thiserror",
@@ -2368,7 +3049,49 @@ dependencies = [
2368
3049
  "url",
2369
3050
  "wasm-bindgen",
2370
3051
  "wasm-bindgen-futures",
2371
- "wasm-streams",
3052
+ "wasm-streams 0.4.2",
3053
+ "web-sys",
3054
+ ]
3055
+
3056
+ [[package]]
3057
+ name = "reqwest"
3058
+ version = "0.13.4"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
3061
+ dependencies = [
3062
+ "base64 0.22.1",
3063
+ "bytes",
3064
+ "futures-core",
3065
+ "futures-util",
3066
+ "http",
3067
+ "http-body",
3068
+ "http-body-util",
3069
+ "hyper",
3070
+ "hyper-rustls",
3071
+ "hyper-util",
3072
+ "js-sys",
3073
+ "log",
3074
+ "mime_guess",
3075
+ "percent-encoding",
3076
+ "pin-project-lite",
3077
+ "quinn",
3078
+ "rustls",
3079
+ "rustls-pki-types",
3080
+ "rustls-platform-verifier",
3081
+ "serde",
3082
+ "serde_json",
3083
+ "serde_urlencoded",
3084
+ "sync_wrapper",
3085
+ "tokio",
3086
+ "tokio-rustls",
3087
+ "tokio-util",
3088
+ "tower",
3089
+ "tower-http",
3090
+ "tower-service",
3091
+ "url",
3092
+ "wasm-bindgen",
3093
+ "wasm-bindgen-futures",
3094
+ "wasm-streams 0.5.0",
2372
3095
  "web-sys",
2373
3096
  ]
2374
3097
 
@@ -2441,6 +3164,21 @@ dependencies = [
2441
3164
  "smallvec",
2442
3165
  ]
2443
3166
 
3167
+ [[package]]
3168
+ name = "rustc-hash"
3169
+ version = "2.1.3"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
3172
+
3173
+ [[package]]
3174
+ name = "rustc_version"
3175
+ version = "0.4.1"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3178
+ dependencies = [
3179
+ "semver",
3180
+ ]
3181
+
2444
3182
  [[package]]
2445
3183
  name = "rustix"
2446
3184
  version = "1.1.4"
@@ -2460,6 +3198,7 @@ version = "0.23.42"
2460
3198
  source = "registry+https://github.com/rust-lang/crates.io-index"
2461
3199
  checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
2462
3200
  dependencies = [
3201
+ "aws-lc-rs",
2463
3202
  "log",
2464
3203
  "once_cell",
2465
3204
  "ring",
@@ -2469,21 +3208,62 @@ dependencies = [
2469
3208
  "zeroize",
2470
3209
  ]
2471
3210
 
3211
+ [[package]]
3212
+ name = "rustls-native-certs"
3213
+ version = "0.8.4"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
3216
+ dependencies = [
3217
+ "openssl-probe",
3218
+ "rustls-pki-types",
3219
+ "schannel",
3220
+ "security-framework",
3221
+ ]
3222
+
2472
3223
  [[package]]
2473
3224
  name = "rustls-pki-types"
2474
3225
  version = "1.15.0"
2475
3226
  source = "registry+https://github.com/rust-lang/crates.io-index"
2476
3227
  checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2477
3228
  dependencies = [
3229
+ "web-time",
2478
3230
  "zeroize",
2479
3231
  ]
2480
3232
 
3233
+ [[package]]
3234
+ name = "rustls-platform-verifier"
3235
+ version = "0.7.0"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
3238
+ dependencies = [
3239
+ "core-foundation 0.10.1",
3240
+ "core-foundation-sys",
3241
+ "jni",
3242
+ "log",
3243
+ "once_cell",
3244
+ "rustls",
3245
+ "rustls-native-certs",
3246
+ "rustls-platform-verifier-android",
3247
+ "rustls-webpki",
3248
+ "security-framework",
3249
+ "security-framework-sys",
3250
+ "webpki-root-certs",
3251
+ "windows-sys 0.61.2",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "rustls-platform-verifier-android"
3256
+ version = "0.1.1"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
3259
+
2481
3260
  [[package]]
2482
3261
  name = "rustls-webpki"
2483
3262
  version = "0.103.13"
2484
3263
  source = "registry+https://github.com/rust-lang/crates.io-index"
2485
3264
  checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2486
3265
  dependencies = [
3266
+ "aws-lc-rs",
2487
3267
  "ring",
2488
3268
  "rustls-pki-types",
2489
3269
  "untrusted",
@@ -2544,6 +3324,18 @@ dependencies = [
2544
3324
  "serde_json",
2545
3325
  ]
2546
3326
 
3327
+ [[package]]
3328
+ name = "schemars"
3329
+ version = "0.9.0"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
3332
+ dependencies = [
3333
+ "dyn-clone",
3334
+ "ref-cast",
3335
+ "serde",
3336
+ "serde_json",
3337
+ ]
3338
+
2547
3339
  [[package]]
2548
3340
  name = "schemars"
2549
3341
  version = "1.2.1"
@@ -2605,6 +3397,12 @@ dependencies = [
2605
3397
  "libc",
2606
3398
  ]
2607
3399
 
3400
+ [[package]]
3401
+ name = "semver"
3402
+ version = "1.0.28"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3405
+
2608
3406
  [[package]]
2609
3407
  name = "serde"
2610
3408
  version = "1.0.228"
@@ -2671,6 +3469,49 @@ dependencies = [
2671
3469
  "serde",
2672
3470
  ]
2673
3471
 
3472
+ [[package]]
3473
+ name = "serde_with"
3474
+ version = "3.21.0"
3475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+ checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
3477
+ dependencies = [
3478
+ "base64 0.22.1",
3479
+ "bs58",
3480
+ "chrono",
3481
+ "hex",
3482
+ "indexmap 1.9.3",
3483
+ "indexmap 2.14.0",
3484
+ "schemars 0.9.0",
3485
+ "schemars 1.2.1",
3486
+ "serde_core",
3487
+ "serde_json",
3488
+ "serde_with_macros",
3489
+ "time",
3490
+ ]
3491
+
3492
+ [[package]]
3493
+ name = "serde_with_macros"
3494
+ version = "3.21.0"
3495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3496
+ checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
3497
+ dependencies = [
3498
+ "darling 0.23.0",
3499
+ "proc-macro2",
3500
+ "quote",
3501
+ "syn",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "sha2"
3506
+ version = "0.11.0"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
3509
+ dependencies = [
3510
+ "cfg-if",
3511
+ "cpufeatures",
3512
+ "digest",
3513
+ ]
3514
+
2674
3515
  [[package]]
2675
3516
  name = "sharded-slab"
2676
3517
  version = "0.1.7"
@@ -2686,12 +3527,32 @@ version = "2.0.1"
2686
3527
  source = "registry+https://github.com/rust-lang/crates.io-index"
2687
3528
  checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2688
3529
 
3530
+ [[package]]
3531
+ name = "signal-hook-registry"
3532
+ version = "1.4.8"
3533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3534
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3535
+ dependencies = [
3536
+ "errno",
3537
+ "libc",
3538
+ ]
3539
+
2689
3540
  [[package]]
2690
3541
  name = "simd-adler32"
2691
3542
  version = "0.3.10"
2692
3543
  source = "registry+https://github.com/rust-lang/crates.io-index"
2693
3544
  checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2694
3545
 
3546
+ [[package]]
3547
+ name = "simd_cesu8"
3548
+ version = "1.2.0"
3549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3550
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
3551
+ dependencies = [
3552
+ "rustc_version",
3553
+ "simdutf8",
3554
+ ]
3555
+
2695
3556
  [[package]]
2696
3557
  name = "simd_helpers"
2697
3558
  version = "0.1.0"
@@ -2701,6 +3562,12 @@ dependencies = [
2701
3562
  "quote",
2702
3563
  ]
2703
3564
 
3565
+ [[package]]
3566
+ name = "simdutf8"
3567
+ version = "0.1.5"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3570
+
2704
3571
  [[package]]
2705
3572
  name = "slab"
2706
3573
  version = "0.4.12"
@@ -2918,6 +3785,21 @@ dependencies = [
2918
3785
  "zerovec",
2919
3786
  ]
2920
3787
 
3788
+ [[package]]
3789
+ name = "tinyvec"
3790
+ version = "1.12.0"
3791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3792
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
3793
+ dependencies = [
3794
+ "tinyvec_macros",
3795
+ ]
3796
+
3797
+ [[package]]
3798
+ name = "tinyvec_macros"
3799
+ version = "0.1.1"
3800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3801
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3802
+
2921
3803
  [[package]]
2922
3804
  name = "tokenizers"
2923
3805
  version = "0.22.2"
@@ -2937,7 +3819,7 @@ dependencies = [
2937
3819
  "monostate",
2938
3820
  "onig",
2939
3821
  "paste",
2940
- "rand",
3822
+ "rand 0.9.5",
2941
3823
  "rayon",
2942
3824
  "rayon-cond",
2943
3825
  "regex",
@@ -2961,6 +3843,7 @@ dependencies = [
2961
3843
  "libc",
2962
3844
  "mio",
2963
3845
  "pin-project-lite",
3846
+ "signal-hook-registry",
2964
3847
  "socket2",
2965
3848
  "tokio-macros",
2966
3849
  "windows-sys 0.61.2",
@@ -2997,6 +3880,17 @@ dependencies = [
2997
3880
  "tokio",
2998
3881
  ]
2999
3882
 
3883
+ [[package]]
3884
+ name = "tokio-stream"
3885
+ version = "0.1.18"
3886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3887
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3888
+ dependencies = [
3889
+ "futures-core",
3890
+ "pin-project-lite",
3891
+ "tokio",
3892
+ ]
3893
+
3000
3894
  [[package]]
3001
3895
  name = "tokio-util"
3002
3896
  version = "0.7.18"
@@ -3010,6 +3904,44 @@ dependencies = [
3010
3904
  "tokio",
3011
3905
  ]
3012
3906
 
3907
+ [[package]]
3908
+ name = "tonic"
3909
+ version = "0.14.6"
3910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3911
+ checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef"
3912
+ dependencies = [
3913
+ "base64 0.22.1",
3914
+ "bytes",
3915
+ "http",
3916
+ "http-body",
3917
+ "http-body-util",
3918
+ "hyper",
3919
+ "hyper-timeout",
3920
+ "hyper-util",
3921
+ "percent-encoding",
3922
+ "pin-project",
3923
+ "rustls-native-certs",
3924
+ "sync_wrapper",
3925
+ "tokio",
3926
+ "tokio-rustls",
3927
+ "tokio-stream",
3928
+ "tower",
3929
+ "tower-layer",
3930
+ "tower-service",
3931
+ "tracing",
3932
+ ]
3933
+
3934
+ [[package]]
3935
+ name = "tonic-prost"
3936
+ version = "0.14.6"
3937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3938
+ checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0"
3939
+ dependencies = [
3940
+ "bytes",
3941
+ "prost",
3942
+ "tonic",
3943
+ ]
3944
+
3013
3945
  [[package]]
3014
3946
  name = "tower"
3015
3947
  version = "0.5.3"
@@ -3018,11 +3950,15 @@ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3018
3950
  dependencies = [
3019
3951
  "futures-core",
3020
3952
  "futures-util",
3953
+ "indexmap 2.14.0",
3021
3954
  "pin-project-lite",
3955
+ "slab",
3022
3956
  "sync_wrapper",
3023
3957
  "tokio",
3958
+ "tokio-util",
3024
3959
  "tower-layer",
3025
3960
  "tower-service",
3961
+ "tracing",
3026
3962
  ]
3027
3963
 
3028
3964
  [[package]]
@@ -3098,6 +4034,20 @@ dependencies = [
3098
4034
  "tracing-core",
3099
4035
  ]
3100
4036
 
4037
+ [[package]]
4038
+ name = "tracing-opentelemetry"
4039
+ version = "0.33.0"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "adbc64cba7137545b8044cb1fe9814f7aacf3c6b5f9b45be8bb5db538befdb26"
4042
+ dependencies = [
4043
+ "js-sys",
4044
+ "opentelemetry",
4045
+ "tracing",
4046
+ "tracing-core",
4047
+ "tracing-subscriber",
4048
+ "web-time",
4049
+ ]
4050
+
3101
4051
  [[package]]
3102
4052
  name = "tracing-subscriber"
3103
4053
  version = "0.3.23"
@@ -3122,6 +4072,18 @@ version = "0.2.5"
3122
4072
  source = "registry+https://github.com/rust-lang/crates.io-index"
3123
4073
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3124
4074
 
4075
+ [[package]]
4076
+ name = "typenum"
4077
+ version = "1.20.1"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
4080
+
4081
+ [[package]]
4082
+ name = "unicase"
4083
+ version = "2.9.0"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
4086
+
3125
4087
  [[package]]
3126
4088
  name = "unicode-ident"
3127
4089
  version = "1.0.24"
@@ -3233,6 +4195,15 @@ version = "0.2.2"
3233
4195
  source = "registry+https://github.com/rust-lang/crates.io-index"
3234
4196
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3235
4197
 
4198
+ [[package]]
4199
+ name = "uuid"
4200
+ version = "1.24.0"
4201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4202
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
4203
+ dependencies = [
4204
+ "getrandom 0.4.3",
4205
+ ]
4206
+
3236
4207
  [[package]]
3237
4208
  name = "v_frame"
3238
4209
  version = "0.3.9"
@@ -3364,6 +4335,19 @@ dependencies = [
3364
4335
  "web-sys",
3365
4336
  ]
3366
4337
 
4338
+ [[package]]
4339
+ name = "wasm-streams"
4340
+ version = "0.5.0"
4341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4342
+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
4343
+ dependencies = [
4344
+ "futures-util",
4345
+ "js-sys",
4346
+ "wasm-bindgen",
4347
+ "wasm-bindgen-futures",
4348
+ "web-sys",
4349
+ ]
4350
+
3367
4351
  [[package]]
3368
4352
  name = "web-sys"
3369
4353
  version = "0.3.103"