cobolx 1.0.0 → 1.0.1
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.
- package/.github/workflows/ci.yml +157 -157
- package/Cargo.lock +242 -207
- package/Cargo.toml +1 -1
- package/bin/cobolx.js +27 -81
- package/package.json +27 -27
- package/scripts/install.js +145 -145
- package/src/agent/client.rs +3 -12
- package/bin/check-update.js +0 -44
package/Cargo.lock
CHANGED
|
@@ -134,12 +134,6 @@ version = "1.0.4"
|
|
|
134
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
135
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
136
136
|
|
|
137
|
-
[[package]]
|
|
138
|
-
name = "cfg_aliases"
|
|
139
|
-
version = "0.2.1"
|
|
140
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
-
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
142
|
-
|
|
143
137
|
[[package]]
|
|
144
138
|
name = "chrono"
|
|
145
139
|
version = "0.4.45"
|
|
@@ -223,6 +217,26 @@ dependencies = [
|
|
|
223
217
|
"static_assertions",
|
|
224
218
|
]
|
|
225
219
|
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "core-foundation"
|
|
222
|
+
version = "0.9.4"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"core-foundation-sys",
|
|
227
|
+
"libc",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "core-foundation"
|
|
232
|
+
version = "0.10.1"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"core-foundation-sys",
|
|
237
|
+
"libc",
|
|
238
|
+
]
|
|
239
|
+
|
|
226
240
|
[[package]]
|
|
227
241
|
name = "core-foundation-sys"
|
|
228
242
|
version = "0.8.7"
|
|
@@ -292,6 +306,15 @@ version = "1.16.0"
|
|
|
292
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
307
|
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
294
308
|
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "encoding_rs"
|
|
311
|
+
version = "0.8.35"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"cfg-if",
|
|
316
|
+
]
|
|
317
|
+
|
|
295
318
|
[[package]]
|
|
296
319
|
name = "equivalent"
|
|
297
320
|
version = "1.0.2"
|
|
@@ -332,6 +355,12 @@ version = "0.1.9"
|
|
|
332
355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
356
|
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
334
357
|
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "fnv"
|
|
360
|
+
version = "1.0.7"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
363
|
+
|
|
335
364
|
[[package]]
|
|
336
365
|
name = "foldhash"
|
|
337
366
|
version = "0.1.5"
|
|
@@ -344,6 +373,21 @@ version = "0.2.0"
|
|
|
344
373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
374
|
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
346
375
|
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "foreign-types"
|
|
378
|
+
version = "0.3.2"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"foreign-types-shared",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "foreign-types-shared"
|
|
387
|
+
version = "0.1.1"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
390
|
+
|
|
347
391
|
[[package]]
|
|
348
392
|
name = "form_urlencoded"
|
|
349
393
|
version = "1.2.2"
|
|
@@ -420,35 +464,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
420
464
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
421
465
|
dependencies = [
|
|
422
466
|
"cfg-if",
|
|
423
|
-
"js-sys",
|
|
424
467
|
"libc",
|
|
425
468
|
"wasi",
|
|
426
|
-
"wasm-bindgen",
|
|
427
469
|
]
|
|
428
470
|
|
|
429
471
|
[[package]]
|
|
430
472
|
name = "getrandom"
|
|
431
|
-
version = "0.3
|
|
473
|
+
version = "0.4.3"
|
|
432
474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
-
checksum = "
|
|
475
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
434
476
|
dependencies = [
|
|
435
477
|
"cfg-if",
|
|
436
|
-
"js-sys",
|
|
437
478
|
"libc",
|
|
438
|
-
"r-efi
|
|
439
|
-
"wasip2",
|
|
440
|
-
"wasm-bindgen",
|
|
479
|
+
"r-efi",
|
|
441
480
|
]
|
|
442
481
|
|
|
443
482
|
[[package]]
|
|
444
|
-
name = "
|
|
445
|
-
version = "0.4.
|
|
483
|
+
name = "h2"
|
|
484
|
+
version = "0.4.15"
|
|
446
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
-
checksum = "
|
|
486
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
448
487
|
dependencies = [
|
|
449
|
-
"
|
|
450
|
-
"
|
|
451
|
-
"
|
|
488
|
+
"atomic-waker",
|
|
489
|
+
"bytes",
|
|
490
|
+
"fnv",
|
|
491
|
+
"futures-core",
|
|
492
|
+
"futures-sink",
|
|
493
|
+
"http",
|
|
494
|
+
"indexmap",
|
|
495
|
+
"slab",
|
|
496
|
+
"tokio",
|
|
497
|
+
"tokio-util",
|
|
498
|
+
"tracing",
|
|
452
499
|
]
|
|
453
500
|
|
|
454
501
|
[[package]]
|
|
@@ -544,6 +591,7 @@ dependencies = [
|
|
|
544
591
|
"bytes",
|
|
545
592
|
"futures-channel",
|
|
546
593
|
"futures-core",
|
|
594
|
+
"h2",
|
|
547
595
|
"http",
|
|
548
596
|
"http-body",
|
|
549
597
|
"httparse",
|
|
@@ -567,7 +615,22 @@ dependencies = [
|
|
|
567
615
|
"tokio",
|
|
568
616
|
"tokio-rustls",
|
|
569
617
|
"tower-service",
|
|
570
|
-
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "hyper-tls"
|
|
622
|
+
version = "0.6.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"bytes",
|
|
627
|
+
"http-body-util",
|
|
628
|
+
"hyper",
|
|
629
|
+
"hyper-util",
|
|
630
|
+
"native-tls",
|
|
631
|
+
"tokio",
|
|
632
|
+
"tokio-native-tls",
|
|
633
|
+
"tower-service",
|
|
571
634
|
]
|
|
572
635
|
|
|
573
636
|
[[package]]
|
|
@@ -588,9 +651,11 @@ dependencies = [
|
|
|
588
651
|
"percent-encoding",
|
|
589
652
|
"pin-project-lite",
|
|
590
653
|
"socket2",
|
|
654
|
+
"system-configuration",
|
|
591
655
|
"tokio",
|
|
592
656
|
"tower-service",
|
|
593
657
|
"tracing",
|
|
658
|
+
"windows-registry",
|
|
594
659
|
]
|
|
595
660
|
|
|
596
661
|
[[package]]
|
|
@@ -720,6 +785,16 @@ dependencies = [
|
|
|
720
785
|
"icu_properties",
|
|
721
786
|
]
|
|
722
787
|
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "indexmap"
|
|
790
|
+
version = "2.14.0"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"equivalent",
|
|
795
|
+
"hashbrown 0.17.1",
|
|
796
|
+
]
|
|
797
|
+
|
|
723
798
|
[[package]]
|
|
724
799
|
name = "ipnet"
|
|
725
800
|
version = "2.12.0"
|
|
@@ -835,18 +910,18 @@ dependencies = [
|
|
|
835
910
|
"hashbrown 0.15.5",
|
|
836
911
|
]
|
|
837
912
|
|
|
838
|
-
[[package]]
|
|
839
|
-
name = "lru-slab"
|
|
840
|
-
version = "0.1.2"
|
|
841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
-
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
843
|
-
|
|
844
913
|
[[package]]
|
|
845
914
|
name = "memchr"
|
|
846
915
|
version = "2.8.2"
|
|
847
916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
917
|
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
849
918
|
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "mime"
|
|
921
|
+
version = "0.3.17"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
924
|
+
|
|
850
925
|
[[package]]
|
|
851
926
|
name = "mio"
|
|
852
927
|
version = "0.8.11"
|
|
@@ -870,6 +945,23 @@ dependencies = [
|
|
|
870
945
|
"windows-sys 0.61.2",
|
|
871
946
|
]
|
|
872
947
|
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "native-tls"
|
|
950
|
+
version = "0.2.18"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"libc",
|
|
955
|
+
"log",
|
|
956
|
+
"openssl",
|
|
957
|
+
"openssl-probe",
|
|
958
|
+
"openssl-sys",
|
|
959
|
+
"schannel",
|
|
960
|
+
"security-framework",
|
|
961
|
+
"security-framework-sys",
|
|
962
|
+
"tempfile",
|
|
963
|
+
]
|
|
964
|
+
|
|
873
965
|
[[package]]
|
|
874
966
|
name = "num-traits"
|
|
875
967
|
version = "0.2.19"
|
|
@@ -891,6 +983,49 @@ version = "1.70.2"
|
|
|
891
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
984
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
893
985
|
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "openssl"
|
|
988
|
+
version = "0.10.81"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"bitflags",
|
|
993
|
+
"cfg-if",
|
|
994
|
+
"foreign-types",
|
|
995
|
+
"libc",
|
|
996
|
+
"openssl-macros",
|
|
997
|
+
"openssl-sys",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "openssl-macros"
|
|
1002
|
+
version = "0.1.1"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"proc-macro2",
|
|
1007
|
+
"quote",
|
|
1008
|
+
"syn",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "openssl-probe"
|
|
1013
|
+
version = "0.2.1"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "openssl-sys"
|
|
1019
|
+
version = "0.9.117"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"cc",
|
|
1024
|
+
"libc",
|
|
1025
|
+
"pkg-config",
|
|
1026
|
+
"vcpkg",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
894
1029
|
[[package]]
|
|
895
1030
|
name = "option-ext"
|
|
896
1031
|
version = "0.2.0"
|
|
@@ -953,15 +1088,6 @@ dependencies = [
|
|
|
953
1088
|
"zerovec",
|
|
954
1089
|
]
|
|
955
1090
|
|
|
956
|
-
[[package]]
|
|
957
|
-
name = "ppv-lite86"
|
|
958
|
-
version = "0.2.21"
|
|
959
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
-
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
961
|
-
dependencies = [
|
|
962
|
-
"zerocopy",
|
|
963
|
-
]
|
|
964
|
-
|
|
965
1091
|
[[package]]
|
|
966
1092
|
name = "proc-macro2"
|
|
967
1093
|
version = "1.0.106"
|
|
@@ -971,61 +1097,6 @@ dependencies = [
|
|
|
971
1097
|
"unicode-ident",
|
|
972
1098
|
]
|
|
973
1099
|
|
|
974
|
-
[[package]]
|
|
975
|
-
name = "quinn"
|
|
976
|
-
version = "0.11.11"
|
|
977
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
-
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
979
|
-
dependencies = [
|
|
980
|
-
"bytes",
|
|
981
|
-
"cfg_aliases",
|
|
982
|
-
"pin-project-lite",
|
|
983
|
-
"quinn-proto",
|
|
984
|
-
"quinn-udp",
|
|
985
|
-
"rustc-hash",
|
|
986
|
-
"rustls",
|
|
987
|
-
"socket2",
|
|
988
|
-
"thiserror 2.0.18",
|
|
989
|
-
"tokio",
|
|
990
|
-
"tracing",
|
|
991
|
-
"web-time",
|
|
992
|
-
]
|
|
993
|
-
|
|
994
|
-
[[package]]
|
|
995
|
-
name = "quinn-proto"
|
|
996
|
-
version = "0.11.15"
|
|
997
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
-
checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e"
|
|
999
|
-
dependencies = [
|
|
1000
|
-
"bytes",
|
|
1001
|
-
"getrandom 0.3.4",
|
|
1002
|
-
"lru-slab",
|
|
1003
|
-
"rand",
|
|
1004
|
-
"ring",
|
|
1005
|
-
"rustc-hash",
|
|
1006
|
-
"rustls",
|
|
1007
|
-
"rustls-pki-types",
|
|
1008
|
-
"slab",
|
|
1009
|
-
"thiserror 2.0.18",
|
|
1010
|
-
"tinyvec",
|
|
1011
|
-
"tracing",
|
|
1012
|
-
"web-time",
|
|
1013
|
-
]
|
|
1014
|
-
|
|
1015
|
-
[[package]]
|
|
1016
|
-
name = "quinn-udp"
|
|
1017
|
-
version = "0.5.14"
|
|
1018
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1020
|
-
dependencies = [
|
|
1021
|
-
"cfg_aliases",
|
|
1022
|
-
"libc",
|
|
1023
|
-
"once_cell",
|
|
1024
|
-
"socket2",
|
|
1025
|
-
"tracing",
|
|
1026
|
-
"windows-sys 0.52.0",
|
|
1027
|
-
]
|
|
1028
|
-
|
|
1029
1100
|
[[package]]
|
|
1030
1101
|
name = "quote"
|
|
1031
1102
|
version = "1.0.46"
|
|
@@ -1035,47 +1106,12 @@ dependencies = [
|
|
|
1035
1106
|
"proc-macro2",
|
|
1036
1107
|
]
|
|
1037
1108
|
|
|
1038
|
-
[[package]]
|
|
1039
|
-
name = "r-efi"
|
|
1040
|
-
version = "5.3.0"
|
|
1041
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
-
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1043
|
-
|
|
1044
1109
|
[[package]]
|
|
1045
1110
|
name = "r-efi"
|
|
1046
1111
|
version = "6.0.0"
|
|
1047
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
1113
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1049
1114
|
|
|
1050
|
-
[[package]]
|
|
1051
|
-
name = "rand"
|
|
1052
|
-
version = "0.9.4"
|
|
1053
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
-
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1055
|
-
dependencies = [
|
|
1056
|
-
"rand_chacha",
|
|
1057
|
-
"rand_core",
|
|
1058
|
-
]
|
|
1059
|
-
|
|
1060
|
-
[[package]]
|
|
1061
|
-
name = "rand_chacha"
|
|
1062
|
-
version = "0.9.0"
|
|
1063
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
-
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1065
|
-
dependencies = [
|
|
1066
|
-
"ppv-lite86",
|
|
1067
|
-
"rand_core",
|
|
1068
|
-
]
|
|
1069
|
-
|
|
1070
|
-
[[package]]
|
|
1071
|
-
name = "rand_core"
|
|
1072
|
-
version = "0.9.5"
|
|
1073
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
-
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1075
|
-
dependencies = [
|
|
1076
|
-
"getrandom 0.3.4",
|
|
1077
|
-
]
|
|
1078
|
-
|
|
1079
1115
|
[[package]]
|
|
1080
1116
|
name = "ratatui"
|
|
1081
1117
|
version = "0.26.3"
|
|
@@ -1143,27 +1179,30 @@ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
|
1143
1179
|
dependencies = [
|
|
1144
1180
|
"base64",
|
|
1145
1181
|
"bytes",
|
|
1182
|
+
"encoding_rs",
|
|
1146
1183
|
"futures-core",
|
|
1147
1184
|
"futures-util",
|
|
1185
|
+
"h2",
|
|
1148
1186
|
"http",
|
|
1149
1187
|
"http-body",
|
|
1150
1188
|
"http-body-util",
|
|
1151
1189
|
"hyper",
|
|
1152
1190
|
"hyper-rustls",
|
|
1191
|
+
"hyper-tls",
|
|
1153
1192
|
"hyper-util",
|
|
1154
1193
|
"js-sys",
|
|
1155
1194
|
"log",
|
|
1195
|
+
"mime",
|
|
1196
|
+
"native-tls",
|
|
1156
1197
|
"percent-encoding",
|
|
1157
1198
|
"pin-project-lite",
|
|
1158
|
-
"quinn",
|
|
1159
|
-
"rustls",
|
|
1160
1199
|
"rustls-pki-types",
|
|
1161
1200
|
"serde",
|
|
1162
1201
|
"serde_json",
|
|
1163
1202
|
"serde_urlencoded",
|
|
1164
1203
|
"sync_wrapper",
|
|
1165
1204
|
"tokio",
|
|
1166
|
-
"tokio-
|
|
1205
|
+
"tokio-native-tls",
|
|
1167
1206
|
"tokio-util",
|
|
1168
1207
|
"tower",
|
|
1169
1208
|
"tower-http",
|
|
@@ -1173,7 +1212,6 @@ dependencies = [
|
|
|
1173
1212
|
"wasm-bindgen-futures",
|
|
1174
1213
|
"wasm-streams",
|
|
1175
1214
|
"web-sys",
|
|
1176
|
-
"webpki-roots",
|
|
1177
1215
|
]
|
|
1178
1216
|
|
|
1179
1217
|
[[package]]
|
|
@@ -1215,12 +1253,6 @@ dependencies = [
|
|
|
1215
1253
|
"sqlite-wasm-rs",
|
|
1216
1254
|
]
|
|
1217
1255
|
|
|
1218
|
-
[[package]]
|
|
1219
|
-
name = "rustc-hash"
|
|
1220
|
-
version = "2.1.2"
|
|
1221
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
-
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1223
|
-
|
|
1224
1256
|
[[package]]
|
|
1225
1257
|
name = "rustix"
|
|
1226
1258
|
version = "1.1.4"
|
|
@@ -1241,7 +1273,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1241
1273
|
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
1242
1274
|
dependencies = [
|
|
1243
1275
|
"once_cell",
|
|
1244
|
-
"ring",
|
|
1245
1276
|
"rustls-pki-types",
|
|
1246
1277
|
"rustls-webpki",
|
|
1247
1278
|
"subtle",
|
|
@@ -1254,7 +1285,6 @@ version = "1.14.1"
|
|
|
1254
1285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
1286
|
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1256
1287
|
dependencies = [
|
|
1257
|
-
"web-time",
|
|
1258
1288
|
"zeroize",
|
|
1259
1289
|
]
|
|
1260
1290
|
|
|
@@ -1281,12 +1311,44 @@ version = "1.0.23"
|
|
|
1281
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
1312
|
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1283
1313
|
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "schannel"
|
|
1316
|
+
version = "0.1.29"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1319
|
+
dependencies = [
|
|
1320
|
+
"windows-sys 0.61.2",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1284
1323
|
[[package]]
|
|
1285
1324
|
name = "scopeguard"
|
|
1286
1325
|
version = "1.2.0"
|
|
1287
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
1327
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1289
1328
|
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "security-framework"
|
|
1331
|
+
version = "3.7.0"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1334
|
+
dependencies = [
|
|
1335
|
+
"bitflags",
|
|
1336
|
+
"core-foundation 0.10.1",
|
|
1337
|
+
"core-foundation-sys",
|
|
1338
|
+
"libc",
|
|
1339
|
+
"security-framework-sys",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "security-framework-sys"
|
|
1344
|
+
version = "2.17.0"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1347
|
+
dependencies = [
|
|
1348
|
+
"core-foundation-sys",
|
|
1349
|
+
"libc",
|
|
1350
|
+
]
|
|
1351
|
+
|
|
1290
1352
|
[[package]]
|
|
1291
1353
|
name = "serde"
|
|
1292
1354
|
version = "1.0.228"
|
|
@@ -1500,6 +1562,27 @@ dependencies = [
|
|
|
1500
1562
|
"syn",
|
|
1501
1563
|
]
|
|
1502
1564
|
|
|
1565
|
+
[[package]]
|
|
1566
|
+
name = "system-configuration"
|
|
1567
|
+
version = "0.7.0"
|
|
1568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1569
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
1570
|
+
dependencies = [
|
|
1571
|
+
"bitflags",
|
|
1572
|
+
"core-foundation 0.9.4",
|
|
1573
|
+
"system-configuration-sys",
|
|
1574
|
+
]
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "system-configuration-sys"
|
|
1578
|
+
version = "0.6.0"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"core-foundation-sys",
|
|
1583
|
+
"libc",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1503
1586
|
[[package]]
|
|
1504
1587
|
name = "tempfile"
|
|
1505
1588
|
version = "3.27.0"
|
|
@@ -1563,21 +1646,6 @@ dependencies = [
|
|
|
1563
1646
|
"zerovec",
|
|
1564
1647
|
]
|
|
1565
1648
|
|
|
1566
|
-
[[package]]
|
|
1567
|
-
name = "tinyvec"
|
|
1568
|
-
version = "1.11.0"
|
|
1569
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
-
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1571
|
-
dependencies = [
|
|
1572
|
-
"tinyvec_macros",
|
|
1573
|
-
]
|
|
1574
|
-
|
|
1575
|
-
[[package]]
|
|
1576
|
-
name = "tinyvec_macros"
|
|
1577
|
-
version = "0.1.1"
|
|
1578
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
-
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1580
|
-
|
|
1581
1649
|
[[package]]
|
|
1582
1650
|
name = "tokio"
|
|
1583
1651
|
version = "1.52.3"
|
|
@@ -1606,6 +1674,16 @@ dependencies = [
|
|
|
1606
1674
|
"syn",
|
|
1607
1675
|
]
|
|
1608
1676
|
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "tokio-native-tls"
|
|
1679
|
+
version = "0.3.1"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
1682
|
+
dependencies = [
|
|
1683
|
+
"native-tls",
|
|
1684
|
+
"tokio",
|
|
1685
|
+
]
|
|
1686
|
+
|
|
1609
1687
|
[[package]]
|
|
1610
1688
|
name = "tokio-rustls"
|
|
1611
1689
|
version = "0.26.4"
|
|
@@ -1779,15 +1857,6 @@ version = "0.11.1+wasi-snapshot-preview1"
|
|
|
1779
1857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
1858
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1781
1859
|
|
|
1782
|
-
[[package]]
|
|
1783
|
-
name = "wasip2"
|
|
1784
|
-
version = "1.0.4+wasi-0.2.12"
|
|
1785
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
-
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1787
|
-
dependencies = [
|
|
1788
|
-
"wit-bindgen",
|
|
1789
|
-
]
|
|
1790
|
-
|
|
1791
1860
|
[[package]]
|
|
1792
1861
|
name = "wasm-bindgen"
|
|
1793
1862
|
version = "0.2.125"
|
|
@@ -1866,25 +1935,6 @@ dependencies = [
|
|
|
1866
1935
|
"wasm-bindgen",
|
|
1867
1936
|
]
|
|
1868
1937
|
|
|
1869
|
-
[[package]]
|
|
1870
|
-
name = "web-time"
|
|
1871
|
-
version = "1.1.0"
|
|
1872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1874
|
-
dependencies = [
|
|
1875
|
-
"js-sys",
|
|
1876
|
-
"wasm-bindgen",
|
|
1877
|
-
]
|
|
1878
|
-
|
|
1879
|
-
[[package]]
|
|
1880
|
-
name = "webpki-roots"
|
|
1881
|
-
version = "1.0.8"
|
|
1882
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
-
checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
|
|
1884
|
-
dependencies = [
|
|
1885
|
-
"rustls-pki-types",
|
|
1886
|
-
]
|
|
1887
|
-
|
|
1888
1938
|
[[package]]
|
|
1889
1939
|
name = "winapi"
|
|
1890
1940
|
version = "0.3.9"
|
|
@@ -1948,6 +1998,17 @@ version = "0.2.1"
|
|
|
1948
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
1999
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1950
2000
|
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "windows-registry"
|
|
2003
|
+
version = "0.6.1"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
2006
|
+
dependencies = [
|
|
2007
|
+
"windows-link",
|
|
2008
|
+
"windows-result",
|
|
2009
|
+
"windows-strings",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
1951
2012
|
[[package]]
|
|
1952
2013
|
name = "windows-result"
|
|
1953
2014
|
version = "0.4.1"
|
|
@@ -2123,12 +2184,6 @@ version = "0.52.6"
|
|
|
2123
2184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
2185
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2125
2186
|
|
|
2126
|
-
[[package]]
|
|
2127
|
-
name = "wit-bindgen"
|
|
2128
|
-
version = "0.57.1"
|
|
2129
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
-
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2131
|
-
|
|
2132
2187
|
[[package]]
|
|
2133
2188
|
name = "writeable"
|
|
2134
2189
|
version = "0.6.3"
|
|
@@ -2158,26 +2213,6 @@ dependencies = [
|
|
|
2158
2213
|
"synstructure",
|
|
2159
2214
|
]
|
|
2160
2215
|
|
|
2161
|
-
[[package]]
|
|
2162
|
-
name = "zerocopy"
|
|
2163
|
-
version = "0.8.52"
|
|
2164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
-
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
2166
|
-
dependencies = [
|
|
2167
|
-
"zerocopy-derive",
|
|
2168
|
-
]
|
|
2169
|
-
|
|
2170
|
-
[[package]]
|
|
2171
|
-
name = "zerocopy-derive"
|
|
2172
|
-
version = "0.8.52"
|
|
2173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
-
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
2175
|
-
dependencies = [
|
|
2176
|
-
"proc-macro2",
|
|
2177
|
-
"quote",
|
|
2178
|
-
"syn",
|
|
2179
|
-
]
|
|
2180
|
-
|
|
2181
2216
|
[[package]]
|
|
2182
2217
|
name = "zerofrom"
|
|
2183
2218
|
version = "0.1.8"
|