clawdex-mobile 1.3.2 → 2.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 +1 -1
- package/.github/workflows/npm-release.yml +18 -0
- package/AGENTS.md +3 -3
- package/README.md +112 -541
- package/apps/mobile/.env.example +1 -2
- package/apps/mobile/App.tsx +261 -68
- package/apps/mobile/app.json +31 -5
- package/apps/mobile/assets/brand/splash-icon-white.png +0 -0
- package/apps/mobile/eas.json +30 -0
- package/apps/mobile/package.json +22 -21
- package/apps/mobile/plugins/withAndroidCleartextTraffic.js +14 -0
- package/apps/mobile/src/api/__tests__/ws.test.ts +44 -6
- package/apps/mobile/src/api/chatMapping.ts +48 -8
- package/apps/mobile/src/api/client.ts +6 -0
- package/apps/mobile/src/api/types.ts +11 -0
- package/apps/mobile/src/api/ws.ts +52 -10
- package/apps/mobile/src/bridgeUrl.ts +105 -0
- package/apps/mobile/src/components/ActivityBar.tsx +32 -13
- package/apps/mobile/src/components/ChatHeader.tsx +3 -2
- package/apps/mobile/src/components/ChatInput.tsx +246 -91
- package/apps/mobile/src/components/ChatMessage.tsx +108 -4
- package/apps/mobile/src/config.ts +11 -29
- package/apps/mobile/src/hooks/useVoiceRecorder.ts +264 -0
- package/apps/mobile/src/navigation/DrawerContent.tsx +18 -8
- package/apps/mobile/src/screens/GitScreen.tsx +1 -1
- package/apps/mobile/src/screens/MainScreen.tsx +906 -268
- package/apps/mobile/src/screens/OnboardingScreen.tsx +1132 -0
- package/apps/mobile/src/screens/PrivacyScreen.tsx +1 -1
- package/apps/mobile/src/screens/SettingsScreen.tsx +65 -1
- package/apps/mobile/src/screens/TerminalScreen.tsx +1 -1
- package/apps/mobile/src/screens/TermsScreen.tsx +1 -1
- package/docs/app-review-notes.md +7 -2
- package/docs/eas-builds.md +91 -0
- package/docs/realtime-streaming-limitations.md +84 -0
- package/docs/setup-and-operations.md +239 -0
- package/docs/troubleshooting.md +121 -0
- package/docs/voice-transcription.md +87 -0
- package/package.json +8 -16
- package/scripts/setup-secure-dev.sh +122 -8
- package/scripts/setup-wizard.sh +342 -122
- package/scripts/start-bridge-secure.sh +7 -1
- package/scripts/sync-versions.js +63 -0
- package/services/rust-bridge/.env.example +1 -1
- package/services/rust-bridge/Cargo.lock +778 -11
- package/services/rust-bridge/Cargo.toml +3 -1
- package/services/rust-bridge/package.json +1 -1
- package/services/rust-bridge/src/main.rs +587 -12
- package/apps/mobile/metro.config.js +0 -3
|
@@ -127,6 +127,12 @@ version = "1.0.4"
|
|
|
127
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
128
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
129
129
|
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "cfg_aliases"
|
|
132
|
+
version = "0.2.1"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
135
|
+
|
|
130
136
|
[[package]]
|
|
131
137
|
name = "chrono"
|
|
132
138
|
version = "0.4.43"
|
|
@@ -143,12 +149,14 @@ dependencies = [
|
|
|
143
149
|
|
|
144
150
|
[[package]]
|
|
145
151
|
name = "codex-rust-bridge"
|
|
146
|
-
version = "0.1
|
|
152
|
+
version = "2.0.1"
|
|
147
153
|
dependencies = [
|
|
148
154
|
"axum",
|
|
149
155
|
"base64",
|
|
150
156
|
"chrono",
|
|
151
157
|
"futures-util",
|
|
158
|
+
"qr2term",
|
|
159
|
+
"reqwest",
|
|
152
160
|
"serde",
|
|
153
161
|
"serde_json",
|
|
154
162
|
"shlex",
|
|
@@ -170,6 +178,28 @@ dependencies = [
|
|
|
170
178
|
"libc",
|
|
171
179
|
]
|
|
172
180
|
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "crossterm"
|
|
183
|
+
version = "0.28.1"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"bitflags",
|
|
188
|
+
"crossterm_winapi",
|
|
189
|
+
"parking_lot",
|
|
190
|
+
"rustix",
|
|
191
|
+
"winapi",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "crossterm_winapi"
|
|
196
|
+
version = "0.9.1"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"winapi",
|
|
201
|
+
]
|
|
202
|
+
|
|
173
203
|
[[package]]
|
|
174
204
|
name = "crypto-common"
|
|
175
205
|
version = "0.1.7"
|
|
@@ -196,6 +226,17 @@ dependencies = [
|
|
|
196
226
|
"crypto-common",
|
|
197
227
|
]
|
|
198
228
|
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "displaydoc"
|
|
231
|
+
version = "0.2.5"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"proc-macro2",
|
|
236
|
+
"quote",
|
|
237
|
+
"syn",
|
|
238
|
+
]
|
|
239
|
+
|
|
199
240
|
[[package]]
|
|
200
241
|
name = "errno"
|
|
201
242
|
version = "0.3.14"
|
|
@@ -283,6 +324,19 @@ dependencies = [
|
|
|
283
324
|
"version_check",
|
|
284
325
|
]
|
|
285
326
|
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "getrandom"
|
|
329
|
+
version = "0.2.17"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"cfg-if",
|
|
334
|
+
"js-sys",
|
|
335
|
+
"libc",
|
|
336
|
+
"wasi",
|
|
337
|
+
"wasm-bindgen",
|
|
338
|
+
]
|
|
339
|
+
|
|
286
340
|
[[package]]
|
|
287
341
|
name = "getrandom"
|
|
288
342
|
version = "0.3.4"
|
|
@@ -290,9 +344,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
290
344
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
291
345
|
dependencies = [
|
|
292
346
|
"cfg-if",
|
|
347
|
+
"js-sys",
|
|
293
348
|
"libc",
|
|
294
349
|
"r-efi",
|
|
295
350
|
"wasip2",
|
|
351
|
+
"wasm-bindgen",
|
|
296
352
|
]
|
|
297
353
|
|
|
298
354
|
[[package]]
|
|
@@ -359,6 +415,24 @@ dependencies = [
|
|
|
359
415
|
"pin-utils",
|
|
360
416
|
"smallvec",
|
|
361
417
|
"tokio",
|
|
418
|
+
"want",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "hyper-rustls"
|
|
423
|
+
version = "0.27.7"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"http",
|
|
428
|
+
"hyper",
|
|
429
|
+
"hyper-util",
|
|
430
|
+
"rustls",
|
|
431
|
+
"rustls-pki-types",
|
|
432
|
+
"tokio",
|
|
433
|
+
"tokio-rustls",
|
|
434
|
+
"tower-service",
|
|
435
|
+
"webpki-roots",
|
|
362
436
|
]
|
|
363
437
|
|
|
364
438
|
[[package]]
|
|
@@ -367,13 +441,21 @@ version = "0.1.20"
|
|
|
367
441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
442
|
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
369
443
|
dependencies = [
|
|
444
|
+
"base64",
|
|
370
445
|
"bytes",
|
|
446
|
+
"futures-channel",
|
|
447
|
+
"futures-util",
|
|
371
448
|
"http",
|
|
372
449
|
"http-body",
|
|
373
450
|
"hyper",
|
|
451
|
+
"ipnet",
|
|
452
|
+
"libc",
|
|
453
|
+
"percent-encoding",
|
|
374
454
|
"pin-project-lite",
|
|
455
|
+
"socket2",
|
|
375
456
|
"tokio",
|
|
376
457
|
"tower-service",
|
|
458
|
+
"tracing",
|
|
377
459
|
]
|
|
378
460
|
|
|
379
461
|
[[package]]
|
|
@@ -400,6 +482,124 @@ dependencies = [
|
|
|
400
482
|
"cc",
|
|
401
483
|
]
|
|
402
484
|
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "icu_collections"
|
|
487
|
+
version = "2.1.1"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
490
|
+
dependencies = [
|
|
491
|
+
"displaydoc",
|
|
492
|
+
"potential_utf",
|
|
493
|
+
"yoke",
|
|
494
|
+
"zerofrom",
|
|
495
|
+
"zerovec",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "icu_locale_core"
|
|
500
|
+
version = "2.1.1"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"displaydoc",
|
|
505
|
+
"litemap",
|
|
506
|
+
"tinystr",
|
|
507
|
+
"writeable",
|
|
508
|
+
"zerovec",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "icu_normalizer"
|
|
513
|
+
version = "2.1.1"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"icu_collections",
|
|
518
|
+
"icu_normalizer_data",
|
|
519
|
+
"icu_properties",
|
|
520
|
+
"icu_provider",
|
|
521
|
+
"smallvec",
|
|
522
|
+
"zerovec",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "icu_normalizer_data"
|
|
527
|
+
version = "2.1.1"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "icu_properties"
|
|
533
|
+
version = "2.1.2"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"icu_collections",
|
|
538
|
+
"icu_locale_core",
|
|
539
|
+
"icu_properties_data",
|
|
540
|
+
"icu_provider",
|
|
541
|
+
"zerotrie",
|
|
542
|
+
"zerovec",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "icu_properties_data"
|
|
547
|
+
version = "2.1.2"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "icu_provider"
|
|
553
|
+
version = "2.1.1"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"displaydoc",
|
|
558
|
+
"icu_locale_core",
|
|
559
|
+
"writeable",
|
|
560
|
+
"yoke",
|
|
561
|
+
"zerofrom",
|
|
562
|
+
"zerotrie",
|
|
563
|
+
"zerovec",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "idna"
|
|
568
|
+
version = "1.1.0"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"idna_adapter",
|
|
573
|
+
"smallvec",
|
|
574
|
+
"utf8_iter",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "idna_adapter"
|
|
579
|
+
version = "1.2.1"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"icu_normalizer",
|
|
584
|
+
"icu_properties",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "ipnet"
|
|
589
|
+
version = "2.11.0"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "iri-string"
|
|
595
|
+
version = "0.7.10"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"memchr",
|
|
600
|
+
"serde",
|
|
601
|
+
]
|
|
602
|
+
|
|
403
603
|
[[package]]
|
|
404
604
|
name = "itoa"
|
|
405
605
|
version = "1.0.17"
|
|
@@ -422,6 +622,18 @@ version = "0.2.182"
|
|
|
422
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
623
|
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
424
624
|
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "linux-raw-sys"
|
|
627
|
+
version = "0.4.15"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "litemap"
|
|
633
|
+
version = "0.8.1"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
636
|
+
|
|
425
637
|
[[package]]
|
|
426
638
|
name = "lock_api"
|
|
427
639
|
version = "0.4.14"
|
|
@@ -437,6 +649,12 @@ version = "0.4.29"
|
|
|
437
649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
650
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
439
651
|
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "lru-slab"
|
|
654
|
+
version = "0.1.2"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
657
|
+
|
|
440
658
|
[[package]]
|
|
441
659
|
name = "matchit"
|
|
442
660
|
version = "0.8.4"
|
|
@@ -455,6 +673,16 @@ version = "0.3.17"
|
|
|
455
673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
674
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
457
675
|
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "mime_guess"
|
|
678
|
+
version = "2.0.5"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"mime",
|
|
683
|
+
"unicase",
|
|
684
|
+
]
|
|
685
|
+
|
|
458
686
|
[[package]]
|
|
459
687
|
name = "mio"
|
|
460
688
|
version = "1.1.1"
|
|
@@ -522,6 +750,15 @@ version = "0.1.0"
|
|
|
522
750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
751
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
524
752
|
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "potential_utf"
|
|
755
|
+
version = "0.1.4"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"zerovec",
|
|
760
|
+
]
|
|
761
|
+
|
|
525
762
|
[[package]]
|
|
526
763
|
name = "ppv-lite86"
|
|
527
764
|
version = "0.2.21"
|
|
@@ -540,6 +777,77 @@ dependencies = [
|
|
|
540
777
|
"unicode-ident",
|
|
541
778
|
]
|
|
542
779
|
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "qr2term"
|
|
782
|
+
version = "0.3.3"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "6867c60b38e9747a079a19614dbb5981a53f21b9a56c265f3bfdf6011a50a957"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"crossterm",
|
|
787
|
+
"qrcode",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "qrcode"
|
|
792
|
+
version = "0.14.1"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "d68782463e408eb1e668cf6152704bd856c78c5b6417adaee3203d8f4c1fc9ec"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "quinn"
|
|
798
|
+
version = "0.11.9"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"bytes",
|
|
803
|
+
"cfg_aliases",
|
|
804
|
+
"pin-project-lite",
|
|
805
|
+
"quinn-proto",
|
|
806
|
+
"quinn-udp",
|
|
807
|
+
"rustc-hash",
|
|
808
|
+
"rustls",
|
|
809
|
+
"socket2",
|
|
810
|
+
"thiserror",
|
|
811
|
+
"tokio",
|
|
812
|
+
"tracing",
|
|
813
|
+
"web-time",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "quinn-proto"
|
|
818
|
+
version = "0.11.13"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"bytes",
|
|
823
|
+
"getrandom 0.3.4",
|
|
824
|
+
"lru-slab",
|
|
825
|
+
"rand",
|
|
826
|
+
"ring",
|
|
827
|
+
"rustc-hash",
|
|
828
|
+
"rustls",
|
|
829
|
+
"rustls-pki-types",
|
|
830
|
+
"slab",
|
|
831
|
+
"thiserror",
|
|
832
|
+
"tinyvec",
|
|
833
|
+
"tracing",
|
|
834
|
+
"web-time",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "quinn-udp"
|
|
839
|
+
version = "0.5.14"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"cfg_aliases",
|
|
844
|
+
"libc",
|
|
845
|
+
"once_cell",
|
|
846
|
+
"socket2",
|
|
847
|
+
"tracing",
|
|
848
|
+
"windows-sys 0.60.2",
|
|
849
|
+
]
|
|
850
|
+
|
|
543
851
|
[[package]]
|
|
544
852
|
name = "quote"
|
|
545
853
|
version = "1.0.44"
|
|
@@ -581,7 +889,7 @@ version = "0.9.5"
|
|
|
581
889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
890
|
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
583
891
|
dependencies = [
|
|
584
|
-
"getrandom",
|
|
892
|
+
"getrandom 0.3.4",
|
|
585
893
|
]
|
|
586
894
|
|
|
587
895
|
[[package]]
|
|
@@ -593,6 +901,114 @@ dependencies = [
|
|
|
593
901
|
"bitflags",
|
|
594
902
|
]
|
|
595
903
|
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "reqwest"
|
|
906
|
+
version = "0.12.28"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"base64",
|
|
911
|
+
"bytes",
|
|
912
|
+
"futures-core",
|
|
913
|
+
"futures-util",
|
|
914
|
+
"http",
|
|
915
|
+
"http-body",
|
|
916
|
+
"http-body-util",
|
|
917
|
+
"hyper",
|
|
918
|
+
"hyper-rustls",
|
|
919
|
+
"hyper-util",
|
|
920
|
+
"js-sys",
|
|
921
|
+
"log",
|
|
922
|
+
"mime_guess",
|
|
923
|
+
"percent-encoding",
|
|
924
|
+
"pin-project-lite",
|
|
925
|
+
"quinn",
|
|
926
|
+
"rustls",
|
|
927
|
+
"rustls-pki-types",
|
|
928
|
+
"serde",
|
|
929
|
+
"serde_json",
|
|
930
|
+
"serde_urlencoded",
|
|
931
|
+
"sync_wrapper",
|
|
932
|
+
"tokio",
|
|
933
|
+
"tokio-rustls",
|
|
934
|
+
"tower",
|
|
935
|
+
"tower-http",
|
|
936
|
+
"tower-service",
|
|
937
|
+
"url",
|
|
938
|
+
"wasm-bindgen",
|
|
939
|
+
"wasm-bindgen-futures",
|
|
940
|
+
"web-sys",
|
|
941
|
+
"webpki-roots",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "ring"
|
|
946
|
+
version = "0.17.14"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"cc",
|
|
951
|
+
"cfg-if",
|
|
952
|
+
"getrandom 0.2.17",
|
|
953
|
+
"libc",
|
|
954
|
+
"untrusted",
|
|
955
|
+
"windows-sys 0.52.0",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "rustc-hash"
|
|
960
|
+
version = "2.1.1"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "rustix"
|
|
966
|
+
version = "0.38.44"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"bitflags",
|
|
971
|
+
"errno",
|
|
972
|
+
"libc",
|
|
973
|
+
"linux-raw-sys",
|
|
974
|
+
"windows-sys 0.52.0",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "rustls"
|
|
979
|
+
version = "0.23.37"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"once_cell",
|
|
984
|
+
"ring",
|
|
985
|
+
"rustls-pki-types",
|
|
986
|
+
"rustls-webpki",
|
|
987
|
+
"subtle",
|
|
988
|
+
"zeroize",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "rustls-pki-types"
|
|
993
|
+
version = "1.14.0"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"web-time",
|
|
998
|
+
"zeroize",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "rustls-webpki"
|
|
1003
|
+
version = "0.103.9"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"ring",
|
|
1008
|
+
"rustls-pki-types",
|
|
1009
|
+
"untrusted",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
596
1012
|
[[package]]
|
|
597
1013
|
name = "rustversion"
|
|
598
1014
|
version = "1.0.22"
|
|
@@ -726,6 +1142,18 @@ dependencies = [
|
|
|
726
1142
|
"windows-sys 0.60.2",
|
|
727
1143
|
]
|
|
728
1144
|
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "stable_deref_trait"
|
|
1147
|
+
version = "1.2.1"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "subtle"
|
|
1153
|
+
version = "2.6.1"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1156
|
+
|
|
729
1157
|
[[package]]
|
|
730
1158
|
name = "syn"
|
|
731
1159
|
version = "2.0.117"
|
|
@@ -742,6 +1170,20 @@ name = "sync_wrapper"
|
|
|
742
1170
|
version = "1.0.2"
|
|
743
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
1172
|
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"futures-core",
|
|
1175
|
+
]
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "synstructure"
|
|
1179
|
+
version = "0.13.2"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"proc-macro2",
|
|
1184
|
+
"quote",
|
|
1185
|
+
"syn",
|
|
1186
|
+
]
|
|
745
1187
|
|
|
746
1188
|
[[package]]
|
|
747
1189
|
name = "thiserror"
|
|
@@ -763,6 +1205,31 @@ dependencies = [
|
|
|
763
1205
|
"syn",
|
|
764
1206
|
]
|
|
765
1207
|
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "tinystr"
|
|
1210
|
+
version = "0.8.2"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"displaydoc",
|
|
1215
|
+
"zerovec",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "tinyvec"
|
|
1220
|
+
version = "1.10.0"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"tinyvec_macros",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "tinyvec_macros"
|
|
1229
|
+
version = "0.1.1"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1232
|
+
|
|
766
1233
|
[[package]]
|
|
767
1234
|
name = "tokio"
|
|
768
1235
|
version = "1.49.0"
|
|
@@ -791,6 +1258,16 @@ dependencies = [
|
|
|
791
1258
|
"syn",
|
|
792
1259
|
]
|
|
793
1260
|
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "tokio-rustls"
|
|
1263
|
+
version = "0.26.4"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"rustls",
|
|
1268
|
+
"tokio",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
794
1271
|
[[package]]
|
|
795
1272
|
name = "tokio-tungstenite"
|
|
796
1273
|
version = "0.28.0"
|
|
@@ -819,6 +1296,24 @@ dependencies = [
|
|
|
819
1296
|
"tracing",
|
|
820
1297
|
]
|
|
821
1298
|
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "tower-http"
|
|
1301
|
+
version = "0.6.8"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"bitflags",
|
|
1306
|
+
"bytes",
|
|
1307
|
+
"futures-util",
|
|
1308
|
+
"http",
|
|
1309
|
+
"http-body",
|
|
1310
|
+
"iri-string",
|
|
1311
|
+
"pin-project-lite",
|
|
1312
|
+
"tower",
|
|
1313
|
+
"tower-layer",
|
|
1314
|
+
"tower-service",
|
|
1315
|
+
]
|
|
1316
|
+
|
|
822
1317
|
[[package]]
|
|
823
1318
|
name = "tower-layer"
|
|
824
1319
|
version = "0.3.3"
|
|
@@ -851,6 +1346,12 @@ dependencies = [
|
|
|
851
1346
|
"once_cell",
|
|
852
1347
|
]
|
|
853
1348
|
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "try-lock"
|
|
1351
|
+
version = "0.2.5"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1354
|
+
|
|
854
1355
|
[[package]]
|
|
855
1356
|
name = "tungstenite"
|
|
856
1357
|
version = "0.28.0"
|
|
@@ -874,24 +1375,63 @@ version = "1.19.0"
|
|
|
874
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
1376
|
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
876
1377
|
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "unicase"
|
|
1380
|
+
version = "2.9.0"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
1383
|
+
|
|
877
1384
|
[[package]]
|
|
878
1385
|
name = "unicode-ident"
|
|
879
1386
|
version = "1.0.24"
|
|
880
1387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
1388
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
882
1389
|
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "untrusted"
|
|
1392
|
+
version = "0.9.0"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1395
|
+
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "url"
|
|
1398
|
+
version = "2.5.8"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1401
|
+
dependencies = [
|
|
1402
|
+
"form_urlencoded",
|
|
1403
|
+
"idna",
|
|
1404
|
+
"percent-encoding",
|
|
1405
|
+
"serde",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
883
1408
|
[[package]]
|
|
884
1409
|
name = "utf-8"
|
|
885
1410
|
version = "0.7.6"
|
|
886
1411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
1412
|
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
888
1413
|
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "utf8_iter"
|
|
1416
|
+
version = "1.0.4"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1419
|
+
|
|
889
1420
|
[[package]]
|
|
890
1421
|
name = "version_check"
|
|
891
1422
|
version = "0.9.5"
|
|
892
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
1424
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
894
1425
|
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "want"
|
|
1428
|
+
version = "0.3.1"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1431
|
+
dependencies = [
|
|
1432
|
+
"try-lock",
|
|
1433
|
+
]
|
|
1434
|
+
|
|
895
1435
|
[[package]]
|
|
896
1436
|
name = "wasi"
|
|
897
1437
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -920,6 +1460,20 @@ dependencies = [
|
|
|
920
1460
|
"wasm-bindgen-shared",
|
|
921
1461
|
]
|
|
922
1462
|
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "wasm-bindgen-futures"
|
|
1465
|
+
version = "0.4.60"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "a42e96ea38f49b191e08a1bab66c7ffdba24b06f9995b39a9dd60222e5b6f1da"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"cfg-if",
|
|
1470
|
+
"futures-util",
|
|
1471
|
+
"js-sys",
|
|
1472
|
+
"once_cell",
|
|
1473
|
+
"wasm-bindgen",
|
|
1474
|
+
"web-sys",
|
|
1475
|
+
]
|
|
1476
|
+
|
|
923
1477
|
[[package]]
|
|
924
1478
|
name = "wasm-bindgen-macro"
|
|
925
1479
|
version = "0.2.110"
|
|
@@ -952,6 +1506,57 @@ dependencies = [
|
|
|
952
1506
|
"unicode-ident",
|
|
953
1507
|
]
|
|
954
1508
|
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "web-sys"
|
|
1511
|
+
version = "0.3.87"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "f2c7c5718134e770ee62af3b6b4a84518ec10101aad610c024b64d6ff29bb1ff"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"js-sys",
|
|
1516
|
+
"wasm-bindgen",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "web-time"
|
|
1521
|
+
version = "1.1.0"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"js-sys",
|
|
1526
|
+
"wasm-bindgen",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "webpki-roots"
|
|
1531
|
+
version = "1.0.6"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"rustls-pki-types",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "winapi"
|
|
1540
|
+
version = "0.3.9"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1543
|
+
dependencies = [
|
|
1544
|
+
"winapi-i686-pc-windows-gnu",
|
|
1545
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1550
|
+
version = "0.4.0"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1556
|
+
version = "0.4.0"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1559
|
+
|
|
955
1560
|
[[package]]
|
|
956
1561
|
name = "windows-core"
|
|
957
1562
|
version = "0.62.2"
|
|
@@ -1011,13 +1616,22 @@ dependencies = [
|
|
|
1011
1616
|
"windows-link",
|
|
1012
1617
|
]
|
|
1013
1618
|
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "windows-sys"
|
|
1621
|
+
version = "0.52.0"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1624
|
+
dependencies = [
|
|
1625
|
+
"windows-targets 0.52.6",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1014
1628
|
[[package]]
|
|
1015
1629
|
name = "windows-sys"
|
|
1016
1630
|
version = "0.60.2"
|
|
1017
1631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
1632
|
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1019
1633
|
dependencies = [
|
|
1020
|
-
"windows-targets",
|
|
1634
|
+
"windows-targets 0.53.5",
|
|
1021
1635
|
]
|
|
1022
1636
|
|
|
1023
1637
|
[[package]]
|
|
@@ -1029,6 +1643,22 @@ dependencies = [
|
|
|
1029
1643
|
"windows-link",
|
|
1030
1644
|
]
|
|
1031
1645
|
|
|
1646
|
+
[[package]]
|
|
1647
|
+
name = "windows-targets"
|
|
1648
|
+
version = "0.52.6"
|
|
1649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1651
|
+
dependencies = [
|
|
1652
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1653
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1654
|
+
"windows_i686_gnu 0.52.6",
|
|
1655
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1656
|
+
"windows_i686_msvc 0.52.6",
|
|
1657
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1658
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1659
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1032
1662
|
[[package]]
|
|
1033
1663
|
name = "windows-targets"
|
|
1034
1664
|
version = "0.53.5"
|
|
@@ -1036,58 +1666,106 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1036
1666
|
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1037
1667
|
dependencies = [
|
|
1038
1668
|
"windows-link",
|
|
1039
|
-
"windows_aarch64_gnullvm",
|
|
1040
|
-
"windows_aarch64_msvc",
|
|
1041
|
-
"windows_i686_gnu",
|
|
1042
|
-
"windows_i686_gnullvm",
|
|
1043
|
-
"windows_i686_msvc",
|
|
1044
|
-
"windows_x86_64_gnu",
|
|
1045
|
-
"windows_x86_64_gnullvm",
|
|
1046
|
-
"windows_x86_64_msvc",
|
|
1669
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
1670
|
+
"windows_aarch64_msvc 0.53.1",
|
|
1671
|
+
"windows_i686_gnu 0.53.1",
|
|
1672
|
+
"windows_i686_gnullvm 0.53.1",
|
|
1673
|
+
"windows_i686_msvc 0.53.1",
|
|
1674
|
+
"windows_x86_64_gnu 0.53.1",
|
|
1675
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
1676
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1047
1677
|
]
|
|
1048
1678
|
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "windows_aarch64_gnullvm"
|
|
1681
|
+
version = "0.52.6"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1684
|
+
|
|
1049
1685
|
[[package]]
|
|
1050
1686
|
name = "windows_aarch64_gnullvm"
|
|
1051
1687
|
version = "0.53.1"
|
|
1052
1688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
1689
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1054
1690
|
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "windows_aarch64_msvc"
|
|
1693
|
+
version = "0.52.6"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1696
|
+
|
|
1055
1697
|
[[package]]
|
|
1056
1698
|
name = "windows_aarch64_msvc"
|
|
1057
1699
|
version = "0.53.1"
|
|
1058
1700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
1701
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1060
1702
|
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "windows_i686_gnu"
|
|
1705
|
+
version = "0.52.6"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1708
|
+
|
|
1061
1709
|
[[package]]
|
|
1062
1710
|
name = "windows_i686_gnu"
|
|
1063
1711
|
version = "0.53.1"
|
|
1064
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
1713
|
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1066
1714
|
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "windows_i686_gnullvm"
|
|
1717
|
+
version = "0.52.6"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1720
|
+
|
|
1067
1721
|
[[package]]
|
|
1068
1722
|
name = "windows_i686_gnullvm"
|
|
1069
1723
|
version = "0.53.1"
|
|
1070
1724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
1725
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1072
1726
|
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "windows_i686_msvc"
|
|
1729
|
+
version = "0.52.6"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1732
|
+
|
|
1073
1733
|
[[package]]
|
|
1074
1734
|
name = "windows_i686_msvc"
|
|
1075
1735
|
version = "0.53.1"
|
|
1076
1736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
1737
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1078
1738
|
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "windows_x86_64_gnu"
|
|
1741
|
+
version = "0.52.6"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1744
|
+
|
|
1079
1745
|
[[package]]
|
|
1080
1746
|
name = "windows_x86_64_gnu"
|
|
1081
1747
|
version = "0.53.1"
|
|
1082
1748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
1749
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1084
1750
|
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "windows_x86_64_gnullvm"
|
|
1753
|
+
version = "0.52.6"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1756
|
+
|
|
1085
1757
|
[[package]]
|
|
1086
1758
|
name = "windows_x86_64_gnullvm"
|
|
1087
1759
|
version = "0.53.1"
|
|
1088
1760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
1761
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1090
1762
|
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "windows_x86_64_msvc"
|
|
1765
|
+
version = "0.52.6"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1768
|
+
|
|
1091
1769
|
[[package]]
|
|
1092
1770
|
name = "windows_x86_64_msvc"
|
|
1093
1771
|
version = "0.53.1"
|
|
@@ -1100,6 +1778,35 @@ version = "0.51.0"
|
|
|
1100
1778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
1779
|
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1102
1780
|
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "writeable"
|
|
1783
|
+
version = "0.6.2"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "yoke"
|
|
1789
|
+
version = "0.8.1"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
1792
|
+
dependencies = [
|
|
1793
|
+
"stable_deref_trait",
|
|
1794
|
+
"yoke-derive",
|
|
1795
|
+
"zerofrom",
|
|
1796
|
+
]
|
|
1797
|
+
|
|
1798
|
+
[[package]]
|
|
1799
|
+
name = "yoke-derive"
|
|
1800
|
+
version = "0.8.1"
|
|
1801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
1803
|
+
dependencies = [
|
|
1804
|
+
"proc-macro2",
|
|
1805
|
+
"quote",
|
|
1806
|
+
"syn",
|
|
1807
|
+
"synstructure",
|
|
1808
|
+
]
|
|
1809
|
+
|
|
1103
1810
|
[[package]]
|
|
1104
1811
|
name = "zerocopy"
|
|
1105
1812
|
version = "0.8.39"
|
|
@@ -1120,6 +1827,66 @@ dependencies = [
|
|
|
1120
1827
|
"syn",
|
|
1121
1828
|
]
|
|
1122
1829
|
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "zerofrom"
|
|
1832
|
+
version = "0.1.6"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1835
|
+
dependencies = [
|
|
1836
|
+
"zerofrom-derive",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "zerofrom-derive"
|
|
1841
|
+
version = "0.1.6"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1844
|
+
dependencies = [
|
|
1845
|
+
"proc-macro2",
|
|
1846
|
+
"quote",
|
|
1847
|
+
"syn",
|
|
1848
|
+
"synstructure",
|
|
1849
|
+
]
|
|
1850
|
+
|
|
1851
|
+
[[package]]
|
|
1852
|
+
name = "zeroize"
|
|
1853
|
+
version = "1.8.2"
|
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "zerotrie"
|
|
1859
|
+
version = "0.2.3"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
1862
|
+
dependencies = [
|
|
1863
|
+
"displaydoc",
|
|
1864
|
+
"yoke",
|
|
1865
|
+
"zerofrom",
|
|
1866
|
+
]
|
|
1867
|
+
|
|
1868
|
+
[[package]]
|
|
1869
|
+
name = "zerovec"
|
|
1870
|
+
version = "0.11.5"
|
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
1873
|
+
dependencies = [
|
|
1874
|
+
"yoke",
|
|
1875
|
+
"zerofrom",
|
|
1876
|
+
"zerovec-derive",
|
|
1877
|
+
]
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "zerovec-derive"
|
|
1881
|
+
version = "0.11.2"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"proc-macro2",
|
|
1886
|
+
"quote",
|
|
1887
|
+
"syn",
|
|
1888
|
+
]
|
|
1889
|
+
|
|
1123
1890
|
[[package]]
|
|
1124
1891
|
name = "zmij"
|
|
1125
1892
|
version = "1.0.21"
|