mangleframes 0.2.5__tar.gz → 0.2.7__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.
- {mangleframes-0.2.5 → mangleframes-0.2.7}/Cargo.lock +880 -142
- mangleframes-0.2.7/Cargo.toml +3 -0
- {mangleframes-0.2.5 → mangleframes-0.2.7}/PKG-INFO +4 -6
- {mangleframes-0.2.5 → mangleframes-0.2.7}/pyproject.toml +6 -5
- mangleframes-0.2.7/python/mangleframes/__init__.py +193 -0
- mangleframes-0.2.7/python/mangleframes/alerts.py +284 -0
- mangleframes-0.2.7/python/mangleframes/dqx_server.py +262 -0
- mangleframes-0.2.7/python/mangleframes/launcher.py +41 -0
- mangleframes-0.2.7/python/mangleframes/session.py +168 -0
- mangleframes-0.2.7/spark-connect/Cargo.toml +21 -0
- mangleframes-0.2.7/spark-connect/build.rs +72 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/base.proto +1135 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/catalog.proto +243 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/commands.proto +551 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/common.proto +173 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/expressions.proto +504 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/ml.proto +120 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/ml_common.proto +64 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/relations.proto +1216 -0
- mangleframes-0.2.7/spark-connect/proto/spark/connect/types.proto +205 -0
- mangleframes-0.2.7/spark-connect/src/client.rs +482 -0
- mangleframes-0.2.7/spark-connect/src/error.rs +27 -0
- mangleframes-0.2.7/spark-connect/src/lib.rs +15 -0
- mangleframes-0.2.7/spark-connect/src/proto/spark.connect.rs +6063 -0
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/Cargo.toml +3 -2
- mangleframes-0.2.7/viewer/src/alert_handlers.rs +638 -0
- mangleframes-0.2.7/viewer/src/arrow_reader.rs +423 -0
- mangleframes-0.2.7/viewer/src/dq_handlers.rs +147 -0
- mangleframes-0.2.7/viewer/src/export.rs +217 -0
- mangleframes-0.2.7/viewer/src/handlers.rs +673 -0
- mangleframes-0.2.7/viewer/src/history_handlers.rs +341 -0
- mangleframes-0.2.7/viewer/src/join_handlers.rs +591 -0
- mangleframes-0.2.7/viewer/src/main.rs +118 -0
- mangleframes-0.2.7/viewer/src/perf.rs +417 -0
- mangleframes-0.2.7/viewer/src/reconcile_handlers.rs +908 -0
- mangleframes-0.2.7/viewer/src/spark_client.rs +129 -0
- mangleframes-0.2.7/viewer/src/sql_builder.rs +1920 -0
- mangleframes-0.2.7/viewer/src/stats.rs +487 -0
- mangleframes-0.2.7/viewer/src/test_helpers.rs +313 -0
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/src/web_server.rs +19 -6
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/static/app.js +292 -1
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/static/index.html +48 -0
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/static/style.css +161 -0
- mangleframes-0.2.5/Cargo.toml +0 -3
- mangleframes-0.2.5/python/mangleframes/__init__.py +0 -122
- mangleframes-0.2.5/python/mangleframes/launcher.py +0 -49
- mangleframes-0.2.5/python/mangleframes/protocol.py +0 -1161
- mangleframes-0.2.5/python/mangleframes/server.py +0 -106
- mangleframes-0.2.5/viewer/src/arrow_reader.rs +0 -176
- mangleframes-0.2.5/viewer/src/dq_handlers.rs +0 -88
- mangleframes-0.2.5/viewer/src/export.rs +0 -77
- mangleframes-0.2.5/viewer/src/handlers.rs +0 -419
- mangleframes-0.2.5/viewer/src/history_handlers.rs +0 -288
- mangleframes-0.2.5/viewer/src/join_handlers.rs +0 -197
- mangleframes-0.2.5/viewer/src/main.rs +0 -62
- mangleframes-0.2.5/viewer/src/perf.rs +0 -178
- mangleframes-0.2.5/viewer/src/reconcile_handlers.rs +0 -301
- mangleframes-0.2.5/viewer/src/socket_client.rs +0 -291
- mangleframes-0.2.5/viewer/src/stats.rs +0 -107
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/src/dashboard.rs +0 -0
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/src/history_analysis.rs +0 -0
- {mangleframes-0.2.5 → mangleframes-0.2.7}/viewer/src/websocket.rs +0 -0
|
@@ -247,7 +247,7 @@ dependencies = [
|
|
|
247
247
|
"arrow-schema",
|
|
248
248
|
"chrono",
|
|
249
249
|
"half",
|
|
250
|
-
"indexmap",
|
|
250
|
+
"indexmap 2.12.1",
|
|
251
251
|
"lexical-core",
|
|
252
252
|
"memchr",
|
|
253
253
|
"num",
|
|
@@ -319,6 +319,39 @@ dependencies = [
|
|
|
319
319
|
"regex-syntax",
|
|
320
320
|
]
|
|
321
321
|
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "async-stream"
|
|
324
|
+
version = "0.3.6"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"async-stream-impl",
|
|
329
|
+
"futures-core",
|
|
330
|
+
"pin-project-lite",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "async-stream-impl"
|
|
335
|
+
version = "0.3.6"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"proc-macro2",
|
|
340
|
+
"quote",
|
|
341
|
+
"syn",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "async-trait"
|
|
346
|
+
version = "0.1.89"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"proc-macro2",
|
|
351
|
+
"quote",
|
|
352
|
+
"syn",
|
|
353
|
+
]
|
|
354
|
+
|
|
322
355
|
[[package]]
|
|
323
356
|
name = "atoi"
|
|
324
357
|
version = "2.0.0"
|
|
@@ -340,13 +373,40 @@ version = "1.5.0"
|
|
|
340
373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
374
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
342
375
|
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "axum"
|
|
378
|
+
version = "0.7.9"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"async-trait",
|
|
383
|
+
"axum-core 0.4.5",
|
|
384
|
+
"bytes",
|
|
385
|
+
"futures-util",
|
|
386
|
+
"http",
|
|
387
|
+
"http-body",
|
|
388
|
+
"http-body-util",
|
|
389
|
+
"itoa",
|
|
390
|
+
"matchit 0.7.3",
|
|
391
|
+
"memchr",
|
|
392
|
+
"mime",
|
|
393
|
+
"percent-encoding",
|
|
394
|
+
"pin-project-lite",
|
|
395
|
+
"rustversion",
|
|
396
|
+
"serde",
|
|
397
|
+
"sync_wrapper",
|
|
398
|
+
"tower 0.5.2",
|
|
399
|
+
"tower-layer",
|
|
400
|
+
"tower-service",
|
|
401
|
+
]
|
|
402
|
+
|
|
343
403
|
[[package]]
|
|
344
404
|
name = "axum"
|
|
345
405
|
version = "0.8.8"
|
|
346
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
407
|
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
348
408
|
dependencies = [
|
|
349
|
-
"axum-core",
|
|
409
|
+
"axum-core 0.5.6",
|
|
350
410
|
"base64",
|
|
351
411
|
"bytes",
|
|
352
412
|
"form_urlencoded",
|
|
@@ -357,7 +417,7 @@ dependencies = [
|
|
|
357
417
|
"hyper",
|
|
358
418
|
"hyper-util",
|
|
359
419
|
"itoa",
|
|
360
|
-
"matchit",
|
|
420
|
+
"matchit 0.8.4",
|
|
361
421
|
"memchr",
|
|
362
422
|
"mime",
|
|
363
423
|
"multer",
|
|
@@ -371,12 +431,32 @@ dependencies = [
|
|
|
371
431
|
"sync_wrapper",
|
|
372
432
|
"tokio",
|
|
373
433
|
"tokio-tungstenite",
|
|
374
|
-
"tower",
|
|
434
|
+
"tower 0.5.2",
|
|
375
435
|
"tower-layer",
|
|
376
436
|
"tower-service",
|
|
377
437
|
"tracing",
|
|
378
438
|
]
|
|
379
439
|
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "axum-core"
|
|
442
|
+
version = "0.4.5"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"async-trait",
|
|
447
|
+
"bytes",
|
|
448
|
+
"futures-util",
|
|
449
|
+
"http",
|
|
450
|
+
"http-body",
|
|
451
|
+
"http-body-util",
|
|
452
|
+
"mime",
|
|
453
|
+
"pin-project-lite",
|
|
454
|
+
"rustversion",
|
|
455
|
+
"sync_wrapper",
|
|
456
|
+
"tower-layer",
|
|
457
|
+
"tower-service",
|
|
458
|
+
]
|
|
459
|
+
|
|
380
460
|
[[package]]
|
|
381
461
|
name = "axum-core"
|
|
382
462
|
version = "0.5.6"
|
|
@@ -474,18 +554,18 @@ dependencies = [
|
|
|
474
554
|
"shlex",
|
|
475
555
|
]
|
|
476
556
|
|
|
477
|
-
[[package]]
|
|
478
|
-
name = "cesu8"
|
|
479
|
-
version = "1.1.0"
|
|
480
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
482
|
-
|
|
483
557
|
[[package]]
|
|
484
558
|
name = "cfg-if"
|
|
485
559
|
version = "1.0.4"
|
|
486
560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
561
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
488
562
|
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "cfg_aliases"
|
|
565
|
+
version = "0.2.1"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
568
|
+
|
|
489
569
|
[[package]]
|
|
490
570
|
name = "chrono"
|
|
491
571
|
version = "0.4.42"
|
|
@@ -545,16 +625,6 @@ version = "1.0.4"
|
|
|
545
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
626
|
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
547
627
|
|
|
548
|
-
[[package]]
|
|
549
|
-
name = "combine"
|
|
550
|
-
version = "4.6.7"
|
|
551
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
553
|
-
dependencies = [
|
|
554
|
-
"bytes",
|
|
555
|
-
"memchr",
|
|
556
|
-
]
|
|
557
|
-
|
|
558
628
|
[[package]]
|
|
559
629
|
name = "const-random"
|
|
560
630
|
version = "0.1.18"
|
|
@@ -673,6 +743,12 @@ dependencies = [
|
|
|
673
743
|
"syn",
|
|
674
744
|
]
|
|
675
745
|
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "either"
|
|
748
|
+
version = "1.15.0"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
751
|
+
|
|
676
752
|
[[package]]
|
|
677
753
|
name = "encoding_rs"
|
|
678
754
|
version = "0.8.35"
|
|
@@ -698,12 +774,24 @@ dependencies = [
|
|
|
698
774
|
"windows-sys 0.61.2",
|
|
699
775
|
]
|
|
700
776
|
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "fastrand"
|
|
779
|
+
version = "2.3.0"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
782
|
+
|
|
701
783
|
[[package]]
|
|
702
784
|
name = "find-msvc-tools"
|
|
703
785
|
version = "0.1.6"
|
|
704
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
787
|
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
706
788
|
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "fixedbitset"
|
|
791
|
+
version = "0.5.7"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
794
|
+
|
|
707
795
|
[[package]]
|
|
708
796
|
name = "flatbuffers"
|
|
709
797
|
version = "24.12.23"
|
|
@@ -724,6 +812,12 @@ dependencies = [
|
|
|
724
812
|
"miniz_oxide",
|
|
725
813
|
]
|
|
726
814
|
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "fnv"
|
|
817
|
+
version = "1.0.7"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
820
|
+
|
|
727
821
|
[[package]]
|
|
728
822
|
name = "form_urlencoded"
|
|
729
823
|
version = "1.2.2"
|
|
@@ -740,6 +834,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
740
834
|
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
741
835
|
dependencies = [
|
|
742
836
|
"futures-core",
|
|
837
|
+
"futures-sink",
|
|
743
838
|
]
|
|
744
839
|
|
|
745
840
|
[[package]]
|
|
@@ -748,6 +843,12 @@ version = "0.3.31"
|
|
|
748
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
844
|
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
750
845
|
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "futures-io"
|
|
848
|
+
version = "0.3.31"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
851
|
+
|
|
751
852
|
[[package]]
|
|
752
853
|
name = "futures-macro"
|
|
753
854
|
version = "0.3.31"
|
|
@@ -778,9 +879,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
778
879
|
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
779
880
|
dependencies = [
|
|
780
881
|
"futures-core",
|
|
882
|
+
"futures-io",
|
|
781
883
|
"futures-macro",
|
|
782
884
|
"futures-sink",
|
|
783
885
|
"futures-task",
|
|
886
|
+
"memchr",
|
|
784
887
|
"pin-project-lite",
|
|
785
888
|
"pin-utils",
|
|
786
889
|
"slab",
|
|
@@ -803,8 +906,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
803
906
|
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
804
907
|
dependencies = [
|
|
805
908
|
"cfg-if",
|
|
909
|
+
"js-sys",
|
|
806
910
|
"libc",
|
|
807
911
|
"wasi",
|
|
912
|
+
"wasm-bindgen",
|
|
808
913
|
]
|
|
809
914
|
|
|
810
915
|
[[package]]
|
|
@@ -814,9 +919,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
814
919
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
815
920
|
dependencies = [
|
|
816
921
|
"cfg-if",
|
|
922
|
+
"js-sys",
|
|
817
923
|
"libc",
|
|
818
924
|
"r-efi",
|
|
819
925
|
"wasip2",
|
|
926
|
+
"wasm-bindgen",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "h2"
|
|
931
|
+
version = "0.4.13"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"atomic-waker",
|
|
936
|
+
"bytes",
|
|
937
|
+
"fnv",
|
|
938
|
+
"futures-core",
|
|
939
|
+
"futures-sink",
|
|
940
|
+
"http",
|
|
941
|
+
"indexmap 2.12.1",
|
|
942
|
+
"slab",
|
|
943
|
+
"tokio",
|
|
944
|
+
"tokio-util",
|
|
945
|
+
"tracing",
|
|
820
946
|
]
|
|
821
947
|
|
|
822
948
|
[[package]]
|
|
@@ -831,6 +957,12 @@ dependencies = [
|
|
|
831
957
|
"zerocopy",
|
|
832
958
|
]
|
|
833
959
|
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "hashbrown"
|
|
962
|
+
version = "0.12.3"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
965
|
+
|
|
834
966
|
[[package]]
|
|
835
967
|
name = "hashbrown"
|
|
836
968
|
version = "0.15.5"
|
|
@@ -910,6 +1042,7 @@ dependencies = [
|
|
|
910
1042
|
"bytes",
|
|
911
1043
|
"futures-channel",
|
|
912
1044
|
"futures-core",
|
|
1045
|
+
"h2",
|
|
913
1046
|
"http",
|
|
914
1047
|
"http-body",
|
|
915
1048
|
"httparse",
|
|
@@ -919,6 +1052,37 @@ dependencies = [
|
|
|
919
1052
|
"pin-utils",
|
|
920
1053
|
"smallvec",
|
|
921
1054
|
"tokio",
|
|
1055
|
+
"want",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "hyper-rustls"
|
|
1060
|
+
version = "0.27.7"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"http",
|
|
1065
|
+
"hyper",
|
|
1066
|
+
"hyper-util",
|
|
1067
|
+
"rustls",
|
|
1068
|
+
"rustls-pki-types",
|
|
1069
|
+
"tokio",
|
|
1070
|
+
"tokio-rustls",
|
|
1071
|
+
"tower-service",
|
|
1072
|
+
"webpki-roots",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "hyper-timeout"
|
|
1077
|
+
version = "0.5.2"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
|
|
1080
|
+
dependencies = [
|
|
1081
|
+
"hyper",
|
|
1082
|
+
"hyper-util",
|
|
1083
|
+
"pin-project-lite",
|
|
1084
|
+
"tokio",
|
|
1085
|
+
"tower-service",
|
|
922
1086
|
]
|
|
923
1087
|
|
|
924
1088
|
[[package]]
|
|
@@ -927,14 +1091,22 @@ version = "0.1.19"
|
|
|
927
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
1092
|
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
929
1093
|
dependencies = [
|
|
1094
|
+
"base64",
|
|
930
1095
|
"bytes",
|
|
1096
|
+
"futures-channel",
|
|
931
1097
|
"futures-core",
|
|
1098
|
+
"futures-util",
|
|
932
1099
|
"http",
|
|
933
1100
|
"http-body",
|
|
934
1101
|
"hyper",
|
|
1102
|
+
"ipnet",
|
|
1103
|
+
"libc",
|
|
1104
|
+
"percent-encoding",
|
|
935
1105
|
"pin-project-lite",
|
|
1106
|
+
"socket2 0.6.1",
|
|
936
1107
|
"tokio",
|
|
937
1108
|
"tower-service",
|
|
1109
|
+
"tracing",
|
|
938
1110
|
]
|
|
939
1111
|
|
|
940
1112
|
[[package]]
|
|
@@ -1063,6 +1235,16 @@ dependencies = [
|
|
|
1063
1235
|
"icu_properties",
|
|
1064
1236
|
]
|
|
1065
1237
|
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "indexmap"
|
|
1240
|
+
version = "1.9.3"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"autocfg",
|
|
1245
|
+
"hashbrown 0.12.3",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1066
1248
|
[[package]]
|
|
1067
1249
|
name = "indexmap"
|
|
1068
1250
|
version = "2.12.1"
|
|
@@ -1080,38 +1262,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1080
1262
|
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
1081
1263
|
|
|
1082
1264
|
[[package]]
|
|
1083
|
-
name = "
|
|
1084
|
-
version = "
|
|
1265
|
+
name = "ipnet"
|
|
1266
|
+
version = "2.11.0"
|
|
1085
1267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
-
checksum = "
|
|
1268
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1087
1269
|
|
|
1088
1270
|
[[package]]
|
|
1089
|
-
name = "
|
|
1090
|
-
version = "
|
|
1271
|
+
name = "iri-string"
|
|
1272
|
+
version = "0.7.10"
|
|
1091
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
-
checksum = "
|
|
1274
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"memchr",
|
|
1277
|
+
"serde",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "is_terminal_polyfill"
|
|
1282
|
+
version = "1.70.2"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1093
1285
|
|
|
1094
1286
|
[[package]]
|
|
1095
|
-
name = "
|
|
1096
|
-
version = "0.
|
|
1287
|
+
name = "itertools"
|
|
1288
|
+
version = "0.14.0"
|
|
1097
1289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
-
checksum = "
|
|
1290
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1099
1291
|
dependencies = [
|
|
1100
|
-
"
|
|
1101
|
-
"cfg-if",
|
|
1102
|
-
"combine",
|
|
1103
|
-
"jni-sys",
|
|
1104
|
-
"log",
|
|
1105
|
-
"thiserror 1.0.69",
|
|
1106
|
-
"walkdir",
|
|
1107
|
-
"windows-sys 0.45.0",
|
|
1292
|
+
"either",
|
|
1108
1293
|
]
|
|
1109
1294
|
|
|
1110
1295
|
[[package]]
|
|
1111
|
-
name = "
|
|
1112
|
-
version = "0.
|
|
1296
|
+
name = "itoa"
|
|
1297
|
+
version = "1.0.17"
|
|
1113
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
-
checksum = "
|
|
1299
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1115
1300
|
|
|
1116
1301
|
[[package]]
|
|
1117
1302
|
name = "jobserver"
|
|
@@ -1208,6 +1393,12 @@ version = "0.2.15"
|
|
|
1208
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
1394
|
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1210
1395
|
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "linux-raw-sys"
|
|
1398
|
+
version = "0.11.0"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1401
|
+
|
|
1211
1402
|
[[package]]
|
|
1212
1403
|
name = "litemap"
|
|
1213
1404
|
version = "0.8.1"
|
|
@@ -1229,6 +1420,12 @@ version = "0.4.29"
|
|
|
1229
1420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
1421
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1231
1422
|
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "lru-slab"
|
|
1425
|
+
version = "0.1.2"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1428
|
+
|
|
1232
1429
|
[[package]]
|
|
1233
1430
|
name = "lz4_flex"
|
|
1234
1431
|
version = "0.11.5"
|
|
@@ -1247,21 +1444,22 @@ dependencies = [
|
|
|
1247
1444
|
"arrow-csv",
|
|
1248
1445
|
"arrow-ipc",
|
|
1249
1446
|
"arrow-json",
|
|
1250
|
-
"axum",
|
|
1447
|
+
"axum 0.8.8",
|
|
1251
1448
|
"base64",
|
|
1252
1449
|
"chrono",
|
|
1253
1450
|
"clap",
|
|
1254
1451
|
"futures-util",
|
|
1255
1452
|
"parquet",
|
|
1453
|
+
"reqwest",
|
|
1256
1454
|
"rust-embed",
|
|
1257
1455
|
"serde",
|
|
1258
1456
|
"serde_json",
|
|
1259
|
-
"
|
|
1457
|
+
"spark-connect",
|
|
1458
|
+
"thiserror",
|
|
1260
1459
|
"tokio",
|
|
1261
1460
|
"tower-http",
|
|
1262
1461
|
"tracing",
|
|
1263
1462
|
"tracing-subscriber",
|
|
1264
|
-
"webbrowser",
|
|
1265
1463
|
]
|
|
1266
1464
|
|
|
1267
1465
|
[[package]]
|
|
@@ -1273,6 +1471,12 @@ dependencies = [
|
|
|
1273
1471
|
"regex-automata",
|
|
1274
1472
|
]
|
|
1275
1473
|
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "matchit"
|
|
1476
|
+
version = "0.7.3"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
1479
|
+
|
|
1276
1480
|
[[package]]
|
|
1277
1481
|
name = "matchit"
|
|
1278
1482
|
version = "0.8.4"
|
|
@@ -1340,10 +1544,10 @@ dependencies = [
|
|
|
1340
1544
|
]
|
|
1341
1545
|
|
|
1342
1546
|
[[package]]
|
|
1343
|
-
name = "
|
|
1344
|
-
version = "0.
|
|
1547
|
+
name = "multimap"
|
|
1548
|
+
version = "0.10.1"
|
|
1345
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
-
checksum = "
|
|
1550
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
1347
1551
|
|
|
1348
1552
|
[[package]]
|
|
1349
1553
|
name = "nu-ansi-term"
|
|
@@ -1428,31 +1632,6 @@ dependencies = [
|
|
|
1428
1632
|
"libm",
|
|
1429
1633
|
]
|
|
1430
1634
|
|
|
1431
|
-
[[package]]
|
|
1432
|
-
name = "objc2"
|
|
1433
|
-
version = "0.6.3"
|
|
1434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
-
checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
|
|
1436
|
-
dependencies = [
|
|
1437
|
-
"objc2-encode",
|
|
1438
|
-
]
|
|
1439
|
-
|
|
1440
|
-
[[package]]
|
|
1441
|
-
name = "objc2-encode"
|
|
1442
|
-
version = "4.1.0"
|
|
1443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1445
|
-
|
|
1446
|
-
[[package]]
|
|
1447
|
-
name = "objc2-foundation"
|
|
1448
|
-
version = "0.3.2"
|
|
1449
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
-
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
1451
|
-
dependencies = [
|
|
1452
|
-
"bitflags 2.10.0",
|
|
1453
|
-
"objc2",
|
|
1454
|
-
]
|
|
1455
|
-
|
|
1456
1635
|
[[package]]
|
|
1457
1636
|
name = "once_cell"
|
|
1458
1637
|
version = "1.21.3"
|
|
@@ -1465,6 +1644,12 @@ version = "1.70.2"
|
|
|
1465
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
1645
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1467
1646
|
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "openssl-probe"
|
|
1649
|
+
version = "0.2.0"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
|
|
1652
|
+
|
|
1468
1653
|
[[package]]
|
|
1469
1654
|
name = "ordered-float"
|
|
1470
1655
|
version = "2.10.1"
|
|
@@ -1542,6 +1727,36 @@ version = "2.3.2"
|
|
|
1542
1727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
1728
|
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1544
1729
|
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "petgraph"
|
|
1732
|
+
version = "0.7.1"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"fixedbitset",
|
|
1737
|
+
"indexmap 2.12.1",
|
|
1738
|
+
]
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "pin-project"
|
|
1742
|
+
version = "1.1.10"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
1745
|
+
dependencies = [
|
|
1746
|
+
"pin-project-internal",
|
|
1747
|
+
]
|
|
1748
|
+
|
|
1749
|
+
[[package]]
|
|
1750
|
+
name = "pin-project-internal"
|
|
1751
|
+
version = "1.1.10"
|
|
1752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
1754
|
+
dependencies = [
|
|
1755
|
+
"proc-macro2",
|
|
1756
|
+
"quote",
|
|
1757
|
+
"syn",
|
|
1758
|
+
]
|
|
1759
|
+
|
|
1545
1760
|
[[package]]
|
|
1546
1761
|
name = "pin-project-lite"
|
|
1547
1762
|
version = "0.2.16"
|
|
@@ -1578,6 +1793,16 @@ dependencies = [
|
|
|
1578
1793
|
"zerocopy",
|
|
1579
1794
|
]
|
|
1580
1795
|
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "prettyplease"
|
|
1798
|
+
version = "0.2.37"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"proc-macro2",
|
|
1803
|
+
"syn",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1581
1806
|
[[package]]
|
|
1582
1807
|
name = "proc-macro2"
|
|
1583
1808
|
version = "1.0.105"
|
|
@@ -1588,38 +1813,175 @@ dependencies = [
|
|
|
1588
1813
|
]
|
|
1589
1814
|
|
|
1590
1815
|
[[package]]
|
|
1591
|
-
name = "
|
|
1592
|
-
version = "
|
|
1816
|
+
name = "prost"
|
|
1817
|
+
version = "0.13.5"
|
|
1593
1818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
-
checksum = "
|
|
1819
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
1595
1820
|
dependencies = [
|
|
1596
|
-
"
|
|
1821
|
+
"bytes",
|
|
1822
|
+
"prost-derive",
|
|
1597
1823
|
]
|
|
1598
1824
|
|
|
1599
1825
|
[[package]]
|
|
1600
|
-
name = "
|
|
1601
|
-
version = "
|
|
1826
|
+
name = "prost-build"
|
|
1827
|
+
version = "0.13.5"
|
|
1602
1828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
-
checksum = "
|
|
1829
|
+
checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
|
|
1830
|
+
dependencies = [
|
|
1831
|
+
"heck",
|
|
1832
|
+
"itertools",
|
|
1833
|
+
"log",
|
|
1834
|
+
"multimap",
|
|
1835
|
+
"once_cell",
|
|
1836
|
+
"petgraph",
|
|
1837
|
+
"prettyplease",
|
|
1838
|
+
"prost",
|
|
1839
|
+
"prost-types",
|
|
1840
|
+
"regex",
|
|
1841
|
+
"syn",
|
|
1842
|
+
"tempfile",
|
|
1843
|
+
]
|
|
1604
1844
|
|
|
1605
1845
|
[[package]]
|
|
1606
|
-
name = "
|
|
1607
|
-
version = "0.
|
|
1846
|
+
name = "prost-derive"
|
|
1847
|
+
version = "0.13.5"
|
|
1608
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
-
checksum = "
|
|
1849
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
|
1610
1850
|
dependencies = [
|
|
1611
|
-
"
|
|
1612
|
-
"
|
|
1851
|
+
"anyhow",
|
|
1852
|
+
"itertools",
|
|
1853
|
+
"proc-macro2",
|
|
1854
|
+
"quote",
|
|
1855
|
+
"syn",
|
|
1613
1856
|
]
|
|
1614
1857
|
|
|
1615
1858
|
[[package]]
|
|
1616
|
-
name = "
|
|
1859
|
+
name = "prost-types"
|
|
1860
|
+
version = "0.13.5"
|
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
+
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
|
|
1863
|
+
dependencies = [
|
|
1864
|
+
"prost",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "quinn"
|
|
1869
|
+
version = "0.11.9"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1872
|
+
dependencies = [
|
|
1873
|
+
"bytes",
|
|
1874
|
+
"cfg_aliases",
|
|
1875
|
+
"pin-project-lite",
|
|
1876
|
+
"quinn-proto",
|
|
1877
|
+
"quinn-udp",
|
|
1878
|
+
"rustc-hash",
|
|
1879
|
+
"rustls",
|
|
1880
|
+
"socket2 0.5.10",
|
|
1881
|
+
"thiserror",
|
|
1882
|
+
"tokio",
|
|
1883
|
+
"tracing",
|
|
1884
|
+
"web-time",
|
|
1885
|
+
]
|
|
1886
|
+
|
|
1887
|
+
[[package]]
|
|
1888
|
+
name = "quinn-proto"
|
|
1889
|
+
version = "0.11.13"
|
|
1890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
1892
|
+
dependencies = [
|
|
1893
|
+
"bytes",
|
|
1894
|
+
"getrandom 0.3.4",
|
|
1895
|
+
"lru-slab",
|
|
1896
|
+
"rand 0.9.2",
|
|
1897
|
+
"ring",
|
|
1898
|
+
"rustc-hash",
|
|
1899
|
+
"rustls",
|
|
1900
|
+
"rustls-pki-types",
|
|
1901
|
+
"slab",
|
|
1902
|
+
"thiserror",
|
|
1903
|
+
"tinyvec",
|
|
1904
|
+
"tracing",
|
|
1905
|
+
"web-time",
|
|
1906
|
+
]
|
|
1907
|
+
|
|
1908
|
+
[[package]]
|
|
1909
|
+
name = "quinn-udp"
|
|
1910
|
+
version = "0.5.14"
|
|
1911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1913
|
+
dependencies = [
|
|
1914
|
+
"cfg_aliases",
|
|
1915
|
+
"libc",
|
|
1916
|
+
"once_cell",
|
|
1917
|
+
"socket2 0.5.10",
|
|
1918
|
+
"tracing",
|
|
1919
|
+
"windows-sys 0.52.0",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "quote"
|
|
1924
|
+
version = "1.0.43"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"proc-macro2",
|
|
1929
|
+
]
|
|
1930
|
+
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "r-efi"
|
|
1933
|
+
version = "5.3.0"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1936
|
+
|
|
1937
|
+
[[package]]
|
|
1938
|
+
name = "rand"
|
|
1939
|
+
version = "0.8.5"
|
|
1940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1942
|
+
dependencies = [
|
|
1943
|
+
"libc",
|
|
1944
|
+
"rand_chacha 0.3.1",
|
|
1945
|
+
"rand_core 0.6.4",
|
|
1946
|
+
]
|
|
1947
|
+
|
|
1948
|
+
[[package]]
|
|
1949
|
+
name = "rand"
|
|
1950
|
+
version = "0.9.2"
|
|
1951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1952
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1953
|
+
dependencies = [
|
|
1954
|
+
"rand_chacha 0.9.0",
|
|
1955
|
+
"rand_core 0.9.3",
|
|
1956
|
+
]
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "rand_chacha"
|
|
1960
|
+
version = "0.3.1"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1963
|
+
dependencies = [
|
|
1964
|
+
"ppv-lite86",
|
|
1965
|
+
"rand_core 0.6.4",
|
|
1966
|
+
]
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "rand_chacha"
|
|
1617
1970
|
version = "0.9.0"
|
|
1618
1971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
1972
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1620
1973
|
dependencies = [
|
|
1621
1974
|
"ppv-lite86",
|
|
1622
|
-
"rand_core",
|
|
1975
|
+
"rand_core 0.9.3",
|
|
1976
|
+
]
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "rand_core"
|
|
1980
|
+
version = "0.6.4"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1983
|
+
dependencies = [
|
|
1984
|
+
"getrandom 0.2.16",
|
|
1623
1985
|
]
|
|
1624
1986
|
|
|
1625
1987
|
[[package]]
|
|
@@ -1669,6 +2031,60 @@ version = "0.8.8"
|
|
|
1669
2031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
2032
|
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1671
2033
|
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "reqwest"
|
|
2036
|
+
version = "0.12.28"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"base64",
|
|
2041
|
+
"bytes",
|
|
2042
|
+
"futures-channel",
|
|
2043
|
+
"futures-core",
|
|
2044
|
+
"futures-util",
|
|
2045
|
+
"http",
|
|
2046
|
+
"http-body",
|
|
2047
|
+
"http-body-util",
|
|
2048
|
+
"hyper",
|
|
2049
|
+
"hyper-rustls",
|
|
2050
|
+
"hyper-util",
|
|
2051
|
+
"js-sys",
|
|
2052
|
+
"log",
|
|
2053
|
+
"percent-encoding",
|
|
2054
|
+
"pin-project-lite",
|
|
2055
|
+
"quinn",
|
|
2056
|
+
"rustls",
|
|
2057
|
+
"rustls-pki-types",
|
|
2058
|
+
"serde",
|
|
2059
|
+
"serde_json",
|
|
2060
|
+
"serde_urlencoded",
|
|
2061
|
+
"sync_wrapper",
|
|
2062
|
+
"tokio",
|
|
2063
|
+
"tokio-rustls",
|
|
2064
|
+
"tower 0.5.2",
|
|
2065
|
+
"tower-http",
|
|
2066
|
+
"tower-service",
|
|
2067
|
+
"url",
|
|
2068
|
+
"wasm-bindgen",
|
|
2069
|
+
"wasm-bindgen-futures",
|
|
2070
|
+
"web-sys",
|
|
2071
|
+
"webpki-roots",
|
|
2072
|
+
]
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "ring"
|
|
2076
|
+
version = "0.17.14"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2079
|
+
dependencies = [
|
|
2080
|
+
"cc",
|
|
2081
|
+
"cfg-if",
|
|
2082
|
+
"getrandom 0.2.16",
|
|
2083
|
+
"libc",
|
|
2084
|
+
"untrusted",
|
|
2085
|
+
"windows-sys 0.52.0",
|
|
2086
|
+
]
|
|
2087
|
+
|
|
1672
2088
|
[[package]]
|
|
1673
2089
|
name = "rust-embed"
|
|
1674
2090
|
version = "8.9.0"
|
|
@@ -1703,6 +2119,12 @@ dependencies = [
|
|
|
1703
2119
|
"walkdir",
|
|
1704
2120
|
]
|
|
1705
2121
|
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "rustc-hash"
|
|
2124
|
+
version = "2.1.1"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2127
|
+
|
|
1706
2128
|
[[package]]
|
|
1707
2129
|
name = "rustc_version"
|
|
1708
2130
|
version = "0.4.1"
|
|
@@ -1712,6 +2134,76 @@ dependencies = [
|
|
|
1712
2134
|
"semver",
|
|
1713
2135
|
]
|
|
1714
2136
|
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "rustix"
|
|
2139
|
+
version = "1.1.3"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
2142
|
+
dependencies = [
|
|
2143
|
+
"bitflags 2.10.0",
|
|
2144
|
+
"errno",
|
|
2145
|
+
"libc",
|
|
2146
|
+
"linux-raw-sys",
|
|
2147
|
+
"windows-sys 0.61.2",
|
|
2148
|
+
]
|
|
2149
|
+
|
|
2150
|
+
[[package]]
|
|
2151
|
+
name = "rustls"
|
|
2152
|
+
version = "0.23.36"
|
|
2153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
2155
|
+
dependencies = [
|
|
2156
|
+
"log",
|
|
2157
|
+
"once_cell",
|
|
2158
|
+
"ring",
|
|
2159
|
+
"rustls-pki-types",
|
|
2160
|
+
"rustls-webpki",
|
|
2161
|
+
"subtle",
|
|
2162
|
+
"zeroize",
|
|
2163
|
+
]
|
|
2164
|
+
|
|
2165
|
+
[[package]]
|
|
2166
|
+
name = "rustls-native-certs"
|
|
2167
|
+
version = "0.8.3"
|
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2170
|
+
dependencies = [
|
|
2171
|
+
"openssl-probe",
|
|
2172
|
+
"rustls-pki-types",
|
|
2173
|
+
"schannel",
|
|
2174
|
+
"security-framework",
|
|
2175
|
+
]
|
|
2176
|
+
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "rustls-pemfile"
|
|
2179
|
+
version = "2.2.0"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
2182
|
+
dependencies = [
|
|
2183
|
+
"rustls-pki-types",
|
|
2184
|
+
]
|
|
2185
|
+
|
|
2186
|
+
[[package]]
|
|
2187
|
+
name = "rustls-pki-types"
|
|
2188
|
+
version = "1.14.0"
|
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2191
|
+
dependencies = [
|
|
2192
|
+
"web-time",
|
|
2193
|
+
"zeroize",
|
|
2194
|
+
]
|
|
2195
|
+
|
|
2196
|
+
[[package]]
|
|
2197
|
+
name = "rustls-webpki"
|
|
2198
|
+
version = "0.103.9"
|
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
2201
|
+
dependencies = [
|
|
2202
|
+
"ring",
|
|
2203
|
+
"rustls-pki-types",
|
|
2204
|
+
"untrusted",
|
|
2205
|
+
]
|
|
2206
|
+
|
|
1715
2207
|
[[package]]
|
|
1716
2208
|
name = "rustversion"
|
|
1717
2209
|
version = "1.0.22"
|
|
@@ -1733,12 +2225,44 @@ dependencies = [
|
|
|
1733
2225
|
"winapi-util",
|
|
1734
2226
|
]
|
|
1735
2227
|
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "schannel"
|
|
2230
|
+
version = "0.1.28"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"windows-sys 0.61.2",
|
|
2235
|
+
]
|
|
2236
|
+
|
|
1736
2237
|
[[package]]
|
|
1737
2238
|
name = "scopeguard"
|
|
1738
2239
|
version = "1.2.0"
|
|
1739
2240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
2241
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1741
2242
|
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "security-framework"
|
|
2245
|
+
version = "3.5.1"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"bitflags 2.10.0",
|
|
2250
|
+
"core-foundation",
|
|
2251
|
+
"core-foundation-sys",
|
|
2252
|
+
"libc",
|
|
2253
|
+
"security-framework-sys",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "security-framework-sys"
|
|
2258
|
+
version = "2.15.0"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
2261
|
+
dependencies = [
|
|
2262
|
+
"core-foundation-sys",
|
|
2263
|
+
"libc",
|
|
2264
|
+
]
|
|
2265
|
+
|
|
1742
2266
|
[[package]]
|
|
1743
2267
|
name = "semver"
|
|
1744
2268
|
version = "1.0.27"
|
|
@@ -1894,6 +2418,16 @@ version = "1.1.1"
|
|
|
1894
2418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
2419
|
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
1896
2420
|
|
|
2421
|
+
[[package]]
|
|
2422
|
+
name = "socket2"
|
|
2423
|
+
version = "0.5.10"
|
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
2426
|
+
dependencies = [
|
|
2427
|
+
"libc",
|
|
2428
|
+
"windows-sys 0.52.0",
|
|
2429
|
+
]
|
|
2430
|
+
|
|
1897
2431
|
[[package]]
|
|
1898
2432
|
name = "socket2"
|
|
1899
2433
|
version = "0.6.1"
|
|
@@ -1904,6 +2438,41 @@ dependencies = [
|
|
|
1904
2438
|
"windows-sys 0.60.2",
|
|
1905
2439
|
]
|
|
1906
2440
|
|
|
2441
|
+
[[package]]
|
|
2442
|
+
name = "spark-connect"
|
|
2443
|
+
version = "0.1.0"
|
|
2444
|
+
dependencies = [
|
|
2445
|
+
"arrow",
|
|
2446
|
+
"arrow-ipc",
|
|
2447
|
+
"prost",
|
|
2448
|
+
"prost-types",
|
|
2449
|
+
"reqwest",
|
|
2450
|
+
"serde_json",
|
|
2451
|
+
"thiserror",
|
|
2452
|
+
"tokio",
|
|
2453
|
+
"tonic",
|
|
2454
|
+
"tonic-build",
|
|
2455
|
+
"tracing",
|
|
2456
|
+
"uuid",
|
|
2457
|
+
]
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "spark-connect-proxy"
|
|
2461
|
+
version = "0.1.0"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"clap",
|
|
2464
|
+
"prost",
|
|
2465
|
+
"prost-types",
|
|
2466
|
+
"thiserror",
|
|
2467
|
+
"tokio",
|
|
2468
|
+
"tokio-stream",
|
|
2469
|
+
"tonic",
|
|
2470
|
+
"tonic-build",
|
|
2471
|
+
"tracing",
|
|
2472
|
+
"tracing-subscriber",
|
|
2473
|
+
"uuid",
|
|
2474
|
+
]
|
|
2475
|
+
|
|
1907
2476
|
[[package]]
|
|
1908
2477
|
name = "spin"
|
|
1909
2478
|
version = "0.9.8"
|
|
@@ -1928,6 +2497,12 @@ version = "0.11.1"
|
|
|
1928
2497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
2498
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1930
2499
|
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "subtle"
|
|
2502
|
+
version = "2.6.1"
|
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2505
|
+
|
|
1931
2506
|
[[package]]
|
|
1932
2507
|
name = "syn"
|
|
1933
2508
|
version = "2.0.113"
|
|
@@ -1944,6 +2519,9 @@ name = "sync_wrapper"
|
|
|
1944
2519
|
version = "1.0.2"
|
|
1945
2520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
2521
|
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2522
|
+
dependencies = [
|
|
2523
|
+
"futures-core",
|
|
2524
|
+
]
|
|
1947
2525
|
|
|
1948
2526
|
[[package]]
|
|
1949
2527
|
name = "synstructure"
|
|
@@ -1957,12 +2535,16 @@ dependencies = [
|
|
|
1957
2535
|
]
|
|
1958
2536
|
|
|
1959
2537
|
[[package]]
|
|
1960
|
-
name = "
|
|
1961
|
-
version = "
|
|
2538
|
+
name = "tempfile"
|
|
2539
|
+
version = "3.24.0"
|
|
1962
2540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
-
checksum = "
|
|
2541
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
1964
2542
|
dependencies = [
|
|
1965
|
-
"
|
|
2543
|
+
"fastrand",
|
|
2544
|
+
"getrandom 0.3.4",
|
|
2545
|
+
"once_cell",
|
|
2546
|
+
"rustix",
|
|
2547
|
+
"windows-sys 0.61.2",
|
|
1966
2548
|
]
|
|
1967
2549
|
|
|
1968
2550
|
[[package]]
|
|
@@ -1971,18 +2553,7 @@ version = "2.0.17"
|
|
|
1971
2553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
2554
|
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1973
2555
|
dependencies = [
|
|
1974
|
-
"thiserror-impl
|
|
1975
|
-
]
|
|
1976
|
-
|
|
1977
|
-
[[package]]
|
|
1978
|
-
name = "thiserror-impl"
|
|
1979
|
-
version = "1.0.69"
|
|
1980
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1982
|
-
dependencies = [
|
|
1983
|
-
"proc-macro2",
|
|
1984
|
-
"quote",
|
|
1985
|
-
"syn",
|
|
2556
|
+
"thiserror-impl",
|
|
1986
2557
|
]
|
|
1987
2558
|
|
|
1988
2559
|
[[package]]
|
|
@@ -2035,6 +2606,21 @@ dependencies = [
|
|
|
2035
2606
|
"zerovec",
|
|
2036
2607
|
]
|
|
2037
2608
|
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "tinyvec"
|
|
2611
|
+
version = "1.10.0"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
2614
|
+
dependencies = [
|
|
2615
|
+
"tinyvec_macros",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "tinyvec_macros"
|
|
2620
|
+
version = "0.1.1"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2623
|
+
|
|
2038
2624
|
[[package]]
|
|
2039
2625
|
name = "tokio"
|
|
2040
2626
|
version = "1.49.0"
|
|
@@ -2047,7 +2633,7 @@ dependencies = [
|
|
|
2047
2633
|
"parking_lot",
|
|
2048
2634
|
"pin-project-lite",
|
|
2049
2635
|
"signal-hook-registry",
|
|
2050
|
-
"socket2",
|
|
2636
|
+
"socket2 0.6.1",
|
|
2051
2637
|
"tokio-macros",
|
|
2052
2638
|
"windows-sys 0.61.2",
|
|
2053
2639
|
]
|
|
@@ -2063,6 +2649,27 @@ dependencies = [
|
|
|
2063
2649
|
"syn",
|
|
2064
2650
|
]
|
|
2065
2651
|
|
|
2652
|
+
[[package]]
|
|
2653
|
+
name = "tokio-rustls"
|
|
2654
|
+
version = "0.26.4"
|
|
2655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2656
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2657
|
+
dependencies = [
|
|
2658
|
+
"rustls",
|
|
2659
|
+
"tokio",
|
|
2660
|
+
]
|
|
2661
|
+
|
|
2662
|
+
[[package]]
|
|
2663
|
+
name = "tokio-stream"
|
|
2664
|
+
version = "0.1.18"
|
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
2667
|
+
dependencies = [
|
|
2668
|
+
"futures-core",
|
|
2669
|
+
"pin-project-lite",
|
|
2670
|
+
"tokio",
|
|
2671
|
+
]
|
|
2672
|
+
|
|
2066
2673
|
[[package]]
|
|
2067
2674
|
name = "tokio-tungstenite"
|
|
2068
2675
|
version = "0.28.0"
|
|
@@ -2088,6 +2695,74 @@ dependencies = [
|
|
|
2088
2695
|
"tokio",
|
|
2089
2696
|
]
|
|
2090
2697
|
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "tonic"
|
|
2700
|
+
version = "0.12.3"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
|
|
2703
|
+
dependencies = [
|
|
2704
|
+
"async-stream",
|
|
2705
|
+
"async-trait",
|
|
2706
|
+
"axum 0.7.9",
|
|
2707
|
+
"base64",
|
|
2708
|
+
"bytes",
|
|
2709
|
+
"flate2",
|
|
2710
|
+
"h2",
|
|
2711
|
+
"http",
|
|
2712
|
+
"http-body",
|
|
2713
|
+
"http-body-util",
|
|
2714
|
+
"hyper",
|
|
2715
|
+
"hyper-timeout",
|
|
2716
|
+
"hyper-util",
|
|
2717
|
+
"percent-encoding",
|
|
2718
|
+
"pin-project",
|
|
2719
|
+
"prost",
|
|
2720
|
+
"rustls-native-certs",
|
|
2721
|
+
"rustls-pemfile",
|
|
2722
|
+
"socket2 0.5.10",
|
|
2723
|
+
"tokio",
|
|
2724
|
+
"tokio-rustls",
|
|
2725
|
+
"tokio-stream",
|
|
2726
|
+
"tower 0.4.13",
|
|
2727
|
+
"tower-layer",
|
|
2728
|
+
"tower-service",
|
|
2729
|
+
"tracing",
|
|
2730
|
+
]
|
|
2731
|
+
|
|
2732
|
+
[[package]]
|
|
2733
|
+
name = "tonic-build"
|
|
2734
|
+
version = "0.12.3"
|
|
2735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
+
checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
|
|
2737
|
+
dependencies = [
|
|
2738
|
+
"prettyplease",
|
|
2739
|
+
"proc-macro2",
|
|
2740
|
+
"prost-build",
|
|
2741
|
+
"prost-types",
|
|
2742
|
+
"quote",
|
|
2743
|
+
"syn",
|
|
2744
|
+
]
|
|
2745
|
+
|
|
2746
|
+
[[package]]
|
|
2747
|
+
name = "tower"
|
|
2748
|
+
version = "0.4.13"
|
|
2749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2750
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
2751
|
+
dependencies = [
|
|
2752
|
+
"futures-core",
|
|
2753
|
+
"futures-util",
|
|
2754
|
+
"indexmap 1.9.3",
|
|
2755
|
+
"pin-project",
|
|
2756
|
+
"pin-project-lite",
|
|
2757
|
+
"rand 0.8.5",
|
|
2758
|
+
"slab",
|
|
2759
|
+
"tokio",
|
|
2760
|
+
"tokio-util",
|
|
2761
|
+
"tower-layer",
|
|
2762
|
+
"tower-service",
|
|
2763
|
+
"tracing",
|
|
2764
|
+
]
|
|
2765
|
+
|
|
2091
2766
|
[[package]]
|
|
2092
2767
|
name = "tower"
|
|
2093
2768
|
version = "0.5.2"
|
|
@@ -2119,12 +2794,14 @@ dependencies = [
|
|
|
2119
2794
|
"http-body-util",
|
|
2120
2795
|
"http-range-header",
|
|
2121
2796
|
"httpdate",
|
|
2797
|
+
"iri-string",
|
|
2122
2798
|
"mime",
|
|
2123
2799
|
"mime_guess",
|
|
2124
2800
|
"percent-encoding",
|
|
2125
2801
|
"pin-project-lite",
|
|
2126
2802
|
"tokio",
|
|
2127
2803
|
"tokio-util",
|
|
2804
|
+
"tower 0.5.2",
|
|
2128
2805
|
"tower-layer",
|
|
2129
2806
|
"tower-service",
|
|
2130
2807
|
"tracing",
|
|
@@ -2204,6 +2881,12 @@ dependencies = [
|
|
|
2204
2881
|
"tracing-log",
|
|
2205
2882
|
]
|
|
2206
2883
|
|
|
2884
|
+
[[package]]
|
|
2885
|
+
name = "try-lock"
|
|
2886
|
+
version = "0.2.5"
|
|
2887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2888
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2889
|
+
|
|
2207
2890
|
[[package]]
|
|
2208
2891
|
name = "tungstenite"
|
|
2209
2892
|
version = "0.28.0"
|
|
@@ -2215,9 +2898,9 @@ dependencies = [
|
|
|
2215
2898
|
"http",
|
|
2216
2899
|
"httparse",
|
|
2217
2900
|
"log",
|
|
2218
|
-
"rand",
|
|
2901
|
+
"rand 0.9.2",
|
|
2219
2902
|
"sha1",
|
|
2220
|
-
"thiserror
|
|
2903
|
+
"thiserror",
|
|
2221
2904
|
"utf-8",
|
|
2222
2905
|
]
|
|
2223
2906
|
|
|
@@ -2255,6 +2938,12 @@ version = "1.0.22"
|
|
|
2255
2938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
2939
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
2257
2940
|
|
|
2941
|
+
[[package]]
|
|
2942
|
+
name = "untrusted"
|
|
2943
|
+
version = "0.9.0"
|
|
2944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2946
|
+
|
|
2258
2947
|
[[package]]
|
|
2259
2948
|
name = "url"
|
|
2260
2949
|
version = "2.5.8"
|
|
@@ -2285,6 +2974,17 @@ version = "0.2.2"
|
|
|
2285
2974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
2975
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2287
2976
|
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "uuid"
|
|
2979
|
+
version = "1.19.0"
|
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
2982
|
+
dependencies = [
|
|
2983
|
+
"getrandom 0.3.4",
|
|
2984
|
+
"js-sys",
|
|
2985
|
+
"wasm-bindgen",
|
|
2986
|
+
]
|
|
2987
|
+
|
|
2288
2988
|
[[package]]
|
|
2289
2989
|
name = "valuable"
|
|
2290
2990
|
version = "0.1.1"
|
|
@@ -2307,6 +3007,15 @@ dependencies = [
|
|
|
2307
3007
|
"winapi-util",
|
|
2308
3008
|
]
|
|
2309
3009
|
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "want"
|
|
3012
|
+
version = "0.3.1"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3015
|
+
dependencies = [
|
|
3016
|
+
"try-lock",
|
|
3017
|
+
]
|
|
3018
|
+
|
|
2310
3019
|
[[package]]
|
|
2311
3020
|
name = "wasi"
|
|
2312
3021
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -2335,6 +3044,19 @@ dependencies = [
|
|
|
2335
3044
|
"wasm-bindgen-shared",
|
|
2336
3045
|
]
|
|
2337
3046
|
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "wasm-bindgen-futures"
|
|
3049
|
+
version = "0.4.56"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
3052
|
+
dependencies = [
|
|
3053
|
+
"cfg-if",
|
|
3054
|
+
"js-sys",
|
|
3055
|
+
"once_cell",
|
|
3056
|
+
"wasm-bindgen",
|
|
3057
|
+
"web-sys",
|
|
3058
|
+
]
|
|
3059
|
+
|
|
2338
3060
|
[[package]]
|
|
2339
3061
|
name = "wasm-bindgen-macro"
|
|
2340
3062
|
version = "0.2.106"
|
|
@@ -2378,19 +3100,22 @@ dependencies = [
|
|
|
2378
3100
|
]
|
|
2379
3101
|
|
|
2380
3102
|
[[package]]
|
|
2381
|
-
name = "
|
|
2382
|
-
version = "1.0
|
|
3103
|
+
name = "web-time"
|
|
3104
|
+
version = "1.1.0"
|
|
2383
3105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
-
checksum = "
|
|
3106
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2385
3107
|
dependencies = [
|
|
2386
|
-
"
|
|
2387
|
-
"
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
"
|
|
2392
|
-
"
|
|
2393
|
-
"
|
|
3108
|
+
"js-sys",
|
|
3109
|
+
"wasm-bindgen",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "webpki-roots"
|
|
3114
|
+
version = "1.0.5"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"rustls-pki-types",
|
|
2394
3119
|
]
|
|
2395
3120
|
|
|
2396
3121
|
[[package]]
|
|
@@ -2463,11 +3188,11 @@ dependencies = [
|
|
|
2463
3188
|
|
|
2464
3189
|
[[package]]
|
|
2465
3190
|
name = "windows-sys"
|
|
2466
|
-
version = "0.
|
|
3191
|
+
version = "0.52.0"
|
|
2467
3192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
-
checksum = "
|
|
3193
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2469
3194
|
dependencies = [
|
|
2470
|
-
"windows-targets 0.
|
|
3195
|
+
"windows-targets 0.52.6",
|
|
2471
3196
|
]
|
|
2472
3197
|
|
|
2473
3198
|
[[package]]
|
|
@@ -2490,17 +3215,18 @@ dependencies = [
|
|
|
2490
3215
|
|
|
2491
3216
|
[[package]]
|
|
2492
3217
|
name = "windows-targets"
|
|
2493
|
-
version = "0.
|
|
3218
|
+
version = "0.52.6"
|
|
2494
3219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
-
checksum = "
|
|
3220
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2496
3221
|
dependencies = [
|
|
2497
|
-
"windows_aarch64_gnullvm 0.
|
|
2498
|
-
"windows_aarch64_msvc 0.
|
|
2499
|
-
"windows_i686_gnu 0.
|
|
2500
|
-
"
|
|
2501
|
-
"
|
|
2502
|
-
"
|
|
2503
|
-
"
|
|
3222
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3223
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3224
|
+
"windows_i686_gnu 0.52.6",
|
|
3225
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3226
|
+
"windows_i686_msvc 0.52.6",
|
|
3227
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3228
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3229
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2504
3230
|
]
|
|
2505
3231
|
|
|
2506
3232
|
[[package]]
|
|
@@ -2513,7 +3239,7 @@ dependencies = [
|
|
|
2513
3239
|
"windows_aarch64_gnullvm 0.53.1",
|
|
2514
3240
|
"windows_aarch64_msvc 0.53.1",
|
|
2515
3241
|
"windows_i686_gnu 0.53.1",
|
|
2516
|
-
"windows_i686_gnullvm",
|
|
3242
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2517
3243
|
"windows_i686_msvc 0.53.1",
|
|
2518
3244
|
"windows_x86_64_gnu 0.53.1",
|
|
2519
3245
|
"windows_x86_64_gnullvm 0.53.1",
|
|
@@ -2522,9 +3248,9 @@ dependencies = [
|
|
|
2522
3248
|
|
|
2523
3249
|
[[package]]
|
|
2524
3250
|
name = "windows_aarch64_gnullvm"
|
|
2525
|
-
version = "0.
|
|
3251
|
+
version = "0.52.6"
|
|
2526
3252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2527
|
-
checksum = "
|
|
3253
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2528
3254
|
|
|
2529
3255
|
[[package]]
|
|
2530
3256
|
name = "windows_aarch64_gnullvm"
|
|
@@ -2534,9 +3260,9 @@ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
|
2534
3260
|
|
|
2535
3261
|
[[package]]
|
|
2536
3262
|
name = "windows_aarch64_msvc"
|
|
2537
|
-
version = "0.
|
|
3263
|
+
version = "0.52.6"
|
|
2538
3264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
-
checksum = "
|
|
3265
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2540
3266
|
|
|
2541
3267
|
[[package]]
|
|
2542
3268
|
name = "windows_aarch64_msvc"
|
|
@@ -2546,9 +3272,9 @@ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
|
2546
3272
|
|
|
2547
3273
|
[[package]]
|
|
2548
3274
|
name = "windows_i686_gnu"
|
|
2549
|
-
version = "0.
|
|
3275
|
+
version = "0.52.6"
|
|
2550
3276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2551
|
-
checksum = "
|
|
3277
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2552
3278
|
|
|
2553
3279
|
[[package]]
|
|
2554
3280
|
name = "windows_i686_gnu"
|
|
@@ -2556,6 +3282,12 @@ version = "0.53.1"
|
|
|
2556
3282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
3283
|
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2558
3284
|
|
|
3285
|
+
[[package]]
|
|
3286
|
+
name = "windows_i686_gnullvm"
|
|
3287
|
+
version = "0.52.6"
|
|
3288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3289
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3290
|
+
|
|
2559
3291
|
[[package]]
|
|
2560
3292
|
name = "windows_i686_gnullvm"
|
|
2561
3293
|
version = "0.53.1"
|
|
@@ -2564,9 +3296,9 @@ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
|
2564
3296
|
|
|
2565
3297
|
[[package]]
|
|
2566
3298
|
name = "windows_i686_msvc"
|
|
2567
|
-
version = "0.
|
|
3299
|
+
version = "0.52.6"
|
|
2568
3300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
-
checksum = "
|
|
3301
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2570
3302
|
|
|
2571
3303
|
[[package]]
|
|
2572
3304
|
name = "windows_i686_msvc"
|
|
@@ -2576,9 +3308,9 @@ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
|
2576
3308
|
|
|
2577
3309
|
[[package]]
|
|
2578
3310
|
name = "windows_x86_64_gnu"
|
|
2579
|
-
version = "0.
|
|
3311
|
+
version = "0.52.6"
|
|
2580
3312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2581
|
-
checksum = "
|
|
3313
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2582
3314
|
|
|
2583
3315
|
[[package]]
|
|
2584
3316
|
name = "windows_x86_64_gnu"
|
|
@@ -2588,9 +3320,9 @@ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
|
2588
3320
|
|
|
2589
3321
|
[[package]]
|
|
2590
3322
|
name = "windows_x86_64_gnullvm"
|
|
2591
|
-
version = "0.
|
|
3323
|
+
version = "0.52.6"
|
|
2592
3324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
-
checksum = "
|
|
3325
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2594
3326
|
|
|
2595
3327
|
[[package]]
|
|
2596
3328
|
name = "windows_x86_64_gnullvm"
|
|
@@ -2600,9 +3332,9 @@ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
|
2600
3332
|
|
|
2601
3333
|
[[package]]
|
|
2602
3334
|
name = "windows_x86_64_msvc"
|
|
2603
|
-
version = "0.
|
|
3335
|
+
version = "0.52.6"
|
|
2604
3336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
-
checksum = "
|
|
3337
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2606
3338
|
|
|
2607
3339
|
[[package]]
|
|
2608
3340
|
name = "windows_x86_64_msvc"
|
|
@@ -2686,6 +3418,12 @@ dependencies = [
|
|
|
2686
3418
|
"synstructure",
|
|
2687
3419
|
]
|
|
2688
3420
|
|
|
3421
|
+
[[package]]
|
|
3422
|
+
name = "zeroize"
|
|
3423
|
+
version = "1.8.2"
|
|
3424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3426
|
+
|
|
2689
3427
|
[[package]]
|
|
2690
3428
|
name = "zerotrie"
|
|
2691
3429
|
version = "0.2.3"
|