clawdex-mobile 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/pages.yml +41 -0
- package/AGENTS.md +263 -110
- package/README.md +11 -0
- package/apps/mobile/.env.example +2 -2
- package/apps/mobile/App.tsx +175 -14
- package/apps/mobile/app.json +27 -9
- package/apps/mobile/eas.json +14 -4
- package/apps/mobile/package.json +13 -13
- package/apps/mobile/src/api/__tests__/chatMapping.test.ts +219 -0
- package/apps/mobile/src/api/__tests__/client.test.ts +579 -6
- package/apps/mobile/src/api/__tests__/ws.test.ts +27 -0
- package/apps/mobile/src/api/account.ts +47 -0
- package/apps/mobile/src/api/chatMapping.ts +435 -18
- package/apps/mobile/src/api/client.ts +296 -36
- package/apps/mobile/src/api/rateLimits.ts +143 -0
- package/apps/mobile/src/api/types.ts +106 -0
- package/apps/mobile/src/api/ws.ts +10 -1
- package/apps/mobile/src/components/ChatHeader.tsx +12 -12
- package/apps/mobile/src/components/ChatInput.tsx +154 -88
- package/apps/mobile/src/components/ChatMessage.tsx +548 -93
- package/apps/mobile/src/components/ComposerUsageLimits.tsx +167 -0
- package/apps/mobile/src/components/SelectionSheet.tsx +466 -0
- package/apps/mobile/src/components/ToolBlock.tsx +17 -15
- package/apps/mobile/src/components/VoiceRecordingWaveform.tsx +181 -0
- package/apps/mobile/src/components/WorkspacePickerModal.tsx +572 -0
- package/apps/mobile/src/components/__tests__/chat-input-layout.test.ts +35 -0
- package/apps/mobile/src/components/__tests__/chatImageSource.test.ts +44 -0
- package/apps/mobile/src/components/__tests__/composerUsageLimits.test.ts +138 -0
- package/apps/mobile/src/components/__tests__/voiceWaveform.test.ts +31 -0
- package/apps/mobile/src/components/chat-input-layout.ts +59 -0
- package/apps/mobile/src/components/chatImageSource.ts +86 -0
- package/apps/mobile/src/components/usageLimitBadges.ts +109 -0
- package/apps/mobile/src/components/voiceWaveform.ts +46 -0
- package/apps/mobile/src/config.ts +9 -2
- package/apps/mobile/src/hooks/useVoiceRecorder.ts +8 -1
- package/apps/mobile/src/navigation/DrawerContent.tsx +607 -457
- package/apps/mobile/src/navigation/__tests__/chatThreadTree.test.ts +89 -0
- package/apps/mobile/src/navigation/__tests__/drawerChats.test.ts +65 -0
- package/apps/mobile/src/navigation/chatThreadTree.ts +191 -0
- package/apps/mobile/src/navigation/drawerChats.ts +9 -0
- package/apps/mobile/src/screens/GitScreen.tsx +2 -0
- package/apps/mobile/src/screens/MainScreen.tsx +4244 -1237
- package/apps/mobile/src/screens/OnboardingScreen.tsx +2 -0
- package/apps/mobile/src/screens/SettingsScreen.tsx +256 -226
- package/apps/mobile/src/screens/TerminalScreen.tsx +2 -5
- package/apps/mobile/src/screens/__tests__/agentThreadDisplay.test.ts +80 -0
- package/apps/mobile/src/screens/__tests__/agentThreads.test.ts +170 -0
- package/apps/mobile/src/screens/__tests__/planCardState.test.ts +88 -0
- package/apps/mobile/src/screens/__tests__/subAgentTranscript.test.ts +102 -0
- package/apps/mobile/src/screens/__tests__/transcriptMessages.test.ts +97 -0
- package/apps/mobile/src/screens/agentThreadDisplay.ts +261 -0
- package/apps/mobile/src/screens/agentThreads.ts +167 -0
- package/apps/mobile/src/screens/planCardState.ts +40 -0
- package/apps/mobile/src/screens/subAgentTranscript.ts +149 -0
- package/apps/mobile/src/screens/transcriptMessages.ts +102 -0
- package/apps/mobile/src/theme.ts +6 -12
- package/docs/codex-app-server-cli-gap-tracker.md +14 -5
- package/docs/privacy-policy.md +54 -0
- package/docs/setup-and-operations.md +4 -3
- package/docs/terms-of-service.md +33 -0
- package/package.json +3 -3
- package/services/mac-bridge/package.json +6 -6
- package/services/rust-bridge/Cargo.lock +58 -363
- package/services/rust-bridge/Cargo.toml +2 -2
- package/services/rust-bridge/package.json +1 -1
- package/services/rust-bridge/src/main.rs +507 -9
- package/site/index.html +54 -0
- package/site/privacy/index.html +80 -0
- package/site/styles.css +135 -0
- package/site/support/index.html +51 -0
- package/site/terms/index.html +68 -0
|
@@ -113,9 +113,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
113
113
|
|
|
114
114
|
[[package]]
|
|
115
115
|
name = "cc"
|
|
116
|
-
version = "1.2.
|
|
116
|
+
version = "1.2.57"
|
|
117
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
-
checksum = "
|
|
118
|
+
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
|
|
119
119
|
dependencies = [
|
|
120
120
|
"find-msvc-tools",
|
|
121
121
|
"shlex",
|
|
@@ -135,9 +135,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
135
135
|
|
|
136
136
|
[[package]]
|
|
137
137
|
name = "chrono"
|
|
138
|
-
version = "0.4.
|
|
138
|
+
version = "0.4.44"
|
|
139
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
-
checksum = "
|
|
140
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
141
141
|
dependencies = [
|
|
142
142
|
"iana-time-zone",
|
|
143
143
|
"js-sys",
|
|
@@ -149,7 +149,7 @@ dependencies = [
|
|
|
149
149
|
|
|
150
150
|
[[package]]
|
|
151
151
|
name = "codex-rust-bridge"
|
|
152
|
-
version = "
|
|
152
|
+
version = "3.0.0"
|
|
153
153
|
dependencies = [
|
|
154
154
|
"axum",
|
|
155
155
|
"base64",
|
|
@@ -163,26 +163,6 @@ dependencies = [
|
|
|
163
163
|
"tokio",
|
|
164
164
|
]
|
|
165
165
|
|
|
166
|
-
[[package]]
|
|
167
|
-
name = "core-foundation"
|
|
168
|
-
version = "0.9.4"
|
|
169
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
171
|
-
dependencies = [
|
|
172
|
-
"core-foundation-sys",
|
|
173
|
-
"libc",
|
|
174
|
-
]
|
|
175
|
-
|
|
176
|
-
[[package]]
|
|
177
|
-
name = "core-foundation"
|
|
178
|
-
version = "0.10.1"
|
|
179
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
-
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
181
|
-
dependencies = [
|
|
182
|
-
"core-foundation-sys",
|
|
183
|
-
"libc",
|
|
184
|
-
]
|
|
185
|
-
|
|
186
166
|
[[package]]
|
|
187
167
|
name = "core-foundation-sys"
|
|
188
168
|
version = "0.8.7"
|
|
@@ -207,7 +187,7 @@ dependencies = [
|
|
|
207
187
|
"bitflags",
|
|
208
188
|
"crossterm_winapi",
|
|
209
189
|
"parking_lot",
|
|
210
|
-
"rustix
|
|
190
|
+
"rustix",
|
|
211
191
|
"winapi",
|
|
212
192
|
]
|
|
213
193
|
|
|
@@ -257,21 +237,6 @@ dependencies = [
|
|
|
257
237
|
"syn",
|
|
258
238
|
]
|
|
259
239
|
|
|
260
|
-
[[package]]
|
|
261
|
-
name = "encoding_rs"
|
|
262
|
-
version = "0.8.35"
|
|
263
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
-
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
265
|
-
dependencies = [
|
|
266
|
-
"cfg-if",
|
|
267
|
-
]
|
|
268
|
-
|
|
269
|
-
[[package]]
|
|
270
|
-
name = "equivalent"
|
|
271
|
-
version = "1.0.2"
|
|
272
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
274
|
-
|
|
275
240
|
[[package]]
|
|
276
241
|
name = "errno"
|
|
277
242
|
version = "0.3.14"
|
|
@@ -282,39 +247,12 @@ dependencies = [
|
|
|
282
247
|
"windows-sys 0.61.2",
|
|
283
248
|
]
|
|
284
249
|
|
|
285
|
-
[[package]]
|
|
286
|
-
name = "fastrand"
|
|
287
|
-
version = "2.3.0"
|
|
288
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
-
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
290
|
-
|
|
291
250
|
[[package]]
|
|
292
251
|
name = "find-msvc-tools"
|
|
293
252
|
version = "0.1.9"
|
|
294
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
254
|
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
296
255
|
|
|
297
|
-
[[package]]
|
|
298
|
-
name = "fnv"
|
|
299
|
-
version = "1.0.7"
|
|
300
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
302
|
-
|
|
303
|
-
[[package]]
|
|
304
|
-
name = "foreign-types"
|
|
305
|
-
version = "0.3.2"
|
|
306
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
308
|
-
dependencies = [
|
|
309
|
-
"foreign-types-shared",
|
|
310
|
-
]
|
|
311
|
-
|
|
312
|
-
[[package]]
|
|
313
|
-
name = "foreign-types-shared"
|
|
314
|
-
version = "0.1.1"
|
|
315
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
-
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
317
|
-
|
|
318
256
|
[[package]]
|
|
319
257
|
name = "form_urlencoded"
|
|
320
258
|
version = "1.2.2"
|
|
@@ -413,31 +351,6 @@ dependencies = [
|
|
|
413
351
|
"wasm-bindgen",
|
|
414
352
|
]
|
|
415
353
|
|
|
416
|
-
[[package]]
|
|
417
|
-
name = "h2"
|
|
418
|
-
version = "0.4.13"
|
|
419
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
-
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
421
|
-
dependencies = [
|
|
422
|
-
"atomic-waker",
|
|
423
|
-
"bytes",
|
|
424
|
-
"fnv",
|
|
425
|
-
"futures-core",
|
|
426
|
-
"futures-sink",
|
|
427
|
-
"http",
|
|
428
|
-
"indexmap",
|
|
429
|
-
"slab",
|
|
430
|
-
"tokio",
|
|
431
|
-
"tokio-util",
|
|
432
|
-
"tracing",
|
|
433
|
-
]
|
|
434
|
-
|
|
435
|
-
[[package]]
|
|
436
|
-
name = "hashbrown"
|
|
437
|
-
version = "0.16.1"
|
|
438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
440
|
-
|
|
441
354
|
[[package]]
|
|
442
355
|
name = "http"
|
|
443
356
|
version = "1.4.0"
|
|
@@ -493,7 +406,6 @@ dependencies = [
|
|
|
493
406
|
"bytes",
|
|
494
407
|
"futures-channel",
|
|
495
408
|
"futures-core",
|
|
496
|
-
"h2",
|
|
497
409
|
"http",
|
|
498
410
|
"http-body",
|
|
499
411
|
"httparse",
|
|
@@ -523,22 +435,6 @@ dependencies = [
|
|
|
523
435
|
"webpki-roots",
|
|
524
436
|
]
|
|
525
437
|
|
|
526
|
-
[[package]]
|
|
527
|
-
name = "hyper-tls"
|
|
528
|
-
version = "0.6.0"
|
|
529
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
-
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
531
|
-
dependencies = [
|
|
532
|
-
"bytes",
|
|
533
|
-
"http-body-util",
|
|
534
|
-
"hyper",
|
|
535
|
-
"hyper-util",
|
|
536
|
-
"native-tls",
|
|
537
|
-
"tokio",
|
|
538
|
-
"tokio-native-tls",
|
|
539
|
-
"tower-service",
|
|
540
|
-
]
|
|
541
|
-
|
|
542
438
|
[[package]]
|
|
543
439
|
name = "hyper-util"
|
|
544
440
|
version = "0.1.20"
|
|
@@ -557,11 +453,9 @@ dependencies = [
|
|
|
557
453
|
"percent-encoding",
|
|
558
454
|
"pin-project-lite",
|
|
559
455
|
"socket2",
|
|
560
|
-
"system-configuration",
|
|
561
456
|
"tokio",
|
|
562
457
|
"tower-service",
|
|
563
458
|
"tracing",
|
|
564
|
-
"windows-registry",
|
|
565
459
|
]
|
|
566
460
|
|
|
567
461
|
[[package]]
|
|
@@ -690,21 +584,11 @@ dependencies = [
|
|
|
690
584
|
"icu_properties",
|
|
691
585
|
]
|
|
692
586
|
|
|
693
|
-
[[package]]
|
|
694
|
-
name = "indexmap"
|
|
695
|
-
version = "2.13.0"
|
|
696
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
-
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
698
|
-
dependencies = [
|
|
699
|
-
"equivalent",
|
|
700
|
-
"hashbrown",
|
|
701
|
-
]
|
|
702
|
-
|
|
703
587
|
[[package]]
|
|
704
588
|
name = "ipnet"
|
|
705
|
-
version = "2.
|
|
589
|
+
version = "2.12.0"
|
|
706
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
-
checksum = "
|
|
591
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
708
592
|
|
|
709
593
|
[[package]]
|
|
710
594
|
name = "iri-string"
|
|
@@ -718,15 +602,15 @@ dependencies = [
|
|
|
718
602
|
|
|
719
603
|
[[package]]
|
|
720
604
|
name = "itoa"
|
|
721
|
-
version = "1.0.
|
|
605
|
+
version = "1.0.18"
|
|
722
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
-
checksum = "
|
|
607
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
724
608
|
|
|
725
609
|
[[package]]
|
|
726
610
|
name = "js-sys"
|
|
727
|
-
version = "0.3.
|
|
611
|
+
version = "0.3.91"
|
|
728
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
-
checksum = "
|
|
613
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
730
614
|
dependencies = [
|
|
731
615
|
"once_cell",
|
|
732
616
|
"wasm-bindgen",
|
|
@@ -734,9 +618,9 @@ dependencies = [
|
|
|
734
618
|
|
|
735
619
|
[[package]]
|
|
736
620
|
name = "libc"
|
|
737
|
-
version = "0.2.
|
|
621
|
+
version = "0.2.183"
|
|
738
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
-
checksum = "
|
|
623
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
740
624
|
|
|
741
625
|
[[package]]
|
|
742
626
|
name = "linux-raw-sys"
|
|
@@ -744,12 +628,6 @@ version = "0.4.15"
|
|
|
744
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
629
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
746
630
|
|
|
747
|
-
[[package]]
|
|
748
|
-
name = "linux-raw-sys"
|
|
749
|
-
version = "0.12.1"
|
|
750
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
-
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
752
|
-
|
|
753
631
|
[[package]]
|
|
754
632
|
name = "litemap"
|
|
755
633
|
version = "0.8.1"
|
|
@@ -816,23 +694,6 @@ dependencies = [
|
|
|
816
694
|
"windows-sys 0.61.2",
|
|
817
695
|
]
|
|
818
696
|
|
|
819
|
-
[[package]]
|
|
820
|
-
name = "native-tls"
|
|
821
|
-
version = "0.2.18"
|
|
822
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
824
|
-
dependencies = [
|
|
825
|
-
"libc",
|
|
826
|
-
"log",
|
|
827
|
-
"openssl",
|
|
828
|
-
"openssl-probe",
|
|
829
|
-
"openssl-sys",
|
|
830
|
-
"schannel",
|
|
831
|
-
"security-framework",
|
|
832
|
-
"security-framework-sys",
|
|
833
|
-
"tempfile",
|
|
834
|
-
]
|
|
835
|
-
|
|
836
697
|
[[package]]
|
|
837
698
|
name = "num-traits"
|
|
838
699
|
version = "0.2.19"
|
|
@@ -844,53 +705,9 @@ dependencies = [
|
|
|
844
705
|
|
|
845
706
|
[[package]]
|
|
846
707
|
name = "once_cell"
|
|
847
|
-
version = "1.21.
|
|
848
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
-
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
850
|
-
|
|
851
|
-
[[package]]
|
|
852
|
-
name = "openssl"
|
|
853
|
-
version = "0.10.75"
|
|
854
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
|
|
856
|
-
dependencies = [
|
|
857
|
-
"bitflags",
|
|
858
|
-
"cfg-if",
|
|
859
|
-
"foreign-types",
|
|
860
|
-
"libc",
|
|
861
|
-
"once_cell",
|
|
862
|
-
"openssl-macros",
|
|
863
|
-
"openssl-sys",
|
|
864
|
-
]
|
|
865
|
-
|
|
866
|
-
[[package]]
|
|
867
|
-
name = "openssl-macros"
|
|
868
|
-
version = "0.1.1"
|
|
869
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
-
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
871
|
-
dependencies = [
|
|
872
|
-
"proc-macro2",
|
|
873
|
-
"quote",
|
|
874
|
-
"syn",
|
|
875
|
-
]
|
|
876
|
-
|
|
877
|
-
[[package]]
|
|
878
|
-
name = "openssl-probe"
|
|
879
|
-
version = "0.2.1"
|
|
708
|
+
version = "1.21.4"
|
|
880
709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
-
checksum = "
|
|
882
|
-
|
|
883
|
-
[[package]]
|
|
884
|
-
name = "openssl-sys"
|
|
885
|
-
version = "0.9.111"
|
|
886
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
|
|
888
|
-
dependencies = [
|
|
889
|
-
"cc",
|
|
890
|
-
"libc",
|
|
891
|
-
"pkg-config",
|
|
892
|
-
"vcpkg",
|
|
893
|
-
]
|
|
710
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
894
711
|
|
|
895
712
|
[[package]]
|
|
896
713
|
name = "parking_lot"
|
|
@@ -923,9 +740,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
923
740
|
|
|
924
741
|
[[package]]
|
|
925
742
|
name = "pin-project-lite"
|
|
926
|
-
version = "0.2.
|
|
743
|
+
version = "0.2.17"
|
|
927
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
-
checksum = "
|
|
745
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
929
746
|
|
|
930
747
|
[[package]]
|
|
931
748
|
name = "pin-utils"
|
|
@@ -933,12 +750,6 @@ version = "0.1.0"
|
|
|
933
750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
751
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
935
752
|
|
|
936
|
-
[[package]]
|
|
937
|
-
name = "pkg-config"
|
|
938
|
-
version = "0.3.32"
|
|
939
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
-
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
941
|
-
|
|
942
753
|
[[package]]
|
|
943
754
|
name = "potential_utf"
|
|
944
755
|
version = "0.1.4"
|
|
@@ -1004,9 +815,9 @@ dependencies = [
|
|
|
1004
815
|
|
|
1005
816
|
[[package]]
|
|
1006
817
|
name = "quinn-proto"
|
|
1007
|
-
version = "0.11.
|
|
818
|
+
version = "0.11.14"
|
|
1008
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
-
checksum = "
|
|
820
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1010
821
|
dependencies = [
|
|
1011
822
|
"bytes",
|
|
1012
823
|
"getrandom 0.3.4",
|
|
@@ -1039,9 +850,9 @@ dependencies = [
|
|
|
1039
850
|
|
|
1040
851
|
[[package]]
|
|
1041
852
|
name = "quote"
|
|
1042
|
-
version = "1.0.
|
|
853
|
+
version = "1.0.45"
|
|
1043
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
-
checksum = "
|
|
855
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1045
856
|
dependencies = [
|
|
1046
857
|
"proc-macro2",
|
|
1047
858
|
]
|
|
@@ -1098,22 +909,17 @@ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
|
1098
909
|
dependencies = [
|
|
1099
910
|
"base64",
|
|
1100
911
|
"bytes",
|
|
1101
|
-
"encoding_rs",
|
|
1102
912
|
"futures-core",
|
|
1103
913
|
"futures-util",
|
|
1104
|
-
"h2",
|
|
1105
914
|
"http",
|
|
1106
915
|
"http-body",
|
|
1107
916
|
"http-body-util",
|
|
1108
917
|
"hyper",
|
|
1109
918
|
"hyper-rustls",
|
|
1110
|
-
"hyper-tls",
|
|
1111
919
|
"hyper-util",
|
|
1112
920
|
"js-sys",
|
|
1113
921
|
"log",
|
|
1114
|
-
"mime",
|
|
1115
922
|
"mime_guess",
|
|
1116
|
-
"native-tls",
|
|
1117
923
|
"percent-encoding",
|
|
1118
924
|
"pin-project-lite",
|
|
1119
925
|
"quinn",
|
|
@@ -1124,7 +930,6 @@ dependencies = [
|
|
|
1124
930
|
"serde_urlencoded",
|
|
1125
931
|
"sync_wrapper",
|
|
1126
932
|
"tokio",
|
|
1127
|
-
"tokio-native-tls",
|
|
1128
933
|
"tokio-rustls",
|
|
1129
934
|
"tower",
|
|
1130
935
|
"tower-http",
|
|
@@ -1165,21 +970,8 @@ dependencies = [
|
|
|
1165
970
|
"bitflags",
|
|
1166
971
|
"errno",
|
|
1167
972
|
"libc",
|
|
1168
|
-
"linux-raw-sys
|
|
1169
|
-
"windows-sys 0.
|
|
1170
|
-
]
|
|
1171
|
-
|
|
1172
|
-
[[package]]
|
|
1173
|
-
name = "rustix"
|
|
1174
|
-
version = "1.1.4"
|
|
1175
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
-
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1177
|
-
dependencies = [
|
|
1178
|
-
"bitflags",
|
|
1179
|
-
"errno",
|
|
1180
|
-
"libc",
|
|
1181
|
-
"linux-raw-sys 0.12.1",
|
|
1182
|
-
"windows-sys 0.61.2",
|
|
973
|
+
"linux-raw-sys",
|
|
974
|
+
"windows-sys 0.59.0",
|
|
1183
975
|
]
|
|
1184
976
|
|
|
1185
977
|
[[package]]
|
|
@@ -1229,44 +1021,12 @@ version = "1.0.23"
|
|
|
1229
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
1022
|
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1231
1023
|
|
|
1232
|
-
[[package]]
|
|
1233
|
-
name = "schannel"
|
|
1234
|
-
version = "0.1.28"
|
|
1235
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
-
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
1237
|
-
dependencies = [
|
|
1238
|
-
"windows-sys 0.61.2",
|
|
1239
|
-
]
|
|
1240
|
-
|
|
1241
1024
|
[[package]]
|
|
1242
1025
|
name = "scopeguard"
|
|
1243
1026
|
version = "1.2.0"
|
|
1244
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
1028
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1246
1029
|
|
|
1247
|
-
[[package]]
|
|
1248
|
-
name = "security-framework"
|
|
1249
|
-
version = "3.7.0"
|
|
1250
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
-
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1252
|
-
dependencies = [
|
|
1253
|
-
"bitflags",
|
|
1254
|
-
"core-foundation 0.10.1",
|
|
1255
|
-
"core-foundation-sys",
|
|
1256
|
-
"libc",
|
|
1257
|
-
"security-framework-sys",
|
|
1258
|
-
]
|
|
1259
|
-
|
|
1260
|
-
[[package]]
|
|
1261
|
-
name = "security-framework-sys"
|
|
1262
|
-
version = "2.17.0"
|
|
1263
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
-
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1265
|
-
dependencies = [
|
|
1266
|
-
"core-foundation-sys",
|
|
1267
|
-
"libc",
|
|
1268
|
-
]
|
|
1269
|
-
|
|
1270
1030
|
[[package]]
|
|
1271
1031
|
name = "serde"
|
|
1272
1032
|
version = "1.0.228"
|
|
@@ -1374,12 +1134,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1374
1134
|
|
|
1375
1135
|
[[package]]
|
|
1376
1136
|
name = "socket2"
|
|
1377
|
-
version = "0.6.
|
|
1137
|
+
version = "0.6.3"
|
|
1378
1138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
-
checksum = "
|
|
1139
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1380
1140
|
dependencies = [
|
|
1381
1141
|
"libc",
|
|
1382
|
-
"windows-sys 0.
|
|
1142
|
+
"windows-sys 0.61.2",
|
|
1383
1143
|
]
|
|
1384
1144
|
|
|
1385
1145
|
[[package]]
|
|
@@ -1425,40 +1185,6 @@ dependencies = [
|
|
|
1425
1185
|
"syn",
|
|
1426
1186
|
]
|
|
1427
1187
|
|
|
1428
|
-
[[package]]
|
|
1429
|
-
name = "system-configuration"
|
|
1430
|
-
version = "0.7.0"
|
|
1431
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
-
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
1433
|
-
dependencies = [
|
|
1434
|
-
"bitflags",
|
|
1435
|
-
"core-foundation 0.9.4",
|
|
1436
|
-
"system-configuration-sys",
|
|
1437
|
-
]
|
|
1438
|
-
|
|
1439
|
-
[[package]]
|
|
1440
|
-
name = "system-configuration-sys"
|
|
1441
|
-
version = "0.6.0"
|
|
1442
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
-
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
1444
|
-
dependencies = [
|
|
1445
|
-
"core-foundation-sys",
|
|
1446
|
-
"libc",
|
|
1447
|
-
]
|
|
1448
|
-
|
|
1449
|
-
[[package]]
|
|
1450
|
-
name = "tempfile"
|
|
1451
|
-
version = "3.26.0"
|
|
1452
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
-
checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
|
|
1454
|
-
dependencies = [
|
|
1455
|
-
"fastrand",
|
|
1456
|
-
"getrandom 0.3.4",
|
|
1457
|
-
"once_cell",
|
|
1458
|
-
"rustix 1.1.4",
|
|
1459
|
-
"windows-sys 0.61.2",
|
|
1460
|
-
]
|
|
1461
|
-
|
|
1462
1188
|
[[package]]
|
|
1463
1189
|
name = "thiserror"
|
|
1464
1190
|
version = "2.0.18"
|
|
@@ -1491,9 +1217,9 @@ dependencies = [
|
|
|
1491
1217
|
|
|
1492
1218
|
[[package]]
|
|
1493
1219
|
name = "tinyvec"
|
|
1494
|
-
version = "1.
|
|
1220
|
+
version = "1.11.0"
|
|
1495
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
-
checksum = "
|
|
1222
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1497
1223
|
dependencies = [
|
|
1498
1224
|
"tinyvec_macros",
|
|
1499
1225
|
]
|
|
@@ -1506,9 +1232,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1506
1232
|
|
|
1507
1233
|
[[package]]
|
|
1508
1234
|
name = "tokio"
|
|
1509
|
-
version = "1.
|
|
1235
|
+
version = "1.50.0"
|
|
1510
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
-
checksum = "
|
|
1237
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
1512
1238
|
dependencies = [
|
|
1513
1239
|
"bytes",
|
|
1514
1240
|
"libc",
|
|
@@ -1523,25 +1249,15 @@ dependencies = [
|
|
|
1523
1249
|
|
|
1524
1250
|
[[package]]
|
|
1525
1251
|
name = "tokio-macros"
|
|
1526
|
-
version = "2.6.
|
|
1252
|
+
version = "2.6.1"
|
|
1527
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
-
checksum = "
|
|
1254
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
1529
1255
|
dependencies = [
|
|
1530
1256
|
"proc-macro2",
|
|
1531
1257
|
"quote",
|
|
1532
1258
|
"syn",
|
|
1533
1259
|
]
|
|
1534
1260
|
|
|
1535
|
-
[[package]]
|
|
1536
|
-
name = "tokio-native-tls"
|
|
1537
|
-
version = "0.3.1"
|
|
1538
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
-
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
1540
|
-
dependencies = [
|
|
1541
|
-
"native-tls",
|
|
1542
|
-
"tokio",
|
|
1543
|
-
]
|
|
1544
|
-
|
|
1545
1261
|
[[package]]
|
|
1546
1262
|
name = "tokio-rustls"
|
|
1547
1263
|
version = "0.26.4"
|
|
@@ -1564,19 +1280,6 @@ dependencies = [
|
|
|
1564
1280
|
"tungstenite",
|
|
1565
1281
|
]
|
|
1566
1282
|
|
|
1567
|
-
[[package]]
|
|
1568
|
-
name = "tokio-util"
|
|
1569
|
-
version = "0.7.18"
|
|
1570
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
-
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1572
|
-
dependencies = [
|
|
1573
|
-
"bytes",
|
|
1574
|
-
"futures-core",
|
|
1575
|
-
"futures-sink",
|
|
1576
|
-
"pin-project-lite",
|
|
1577
|
-
"tokio",
|
|
1578
|
-
]
|
|
1579
|
-
|
|
1580
1283
|
[[package]]
|
|
1581
1284
|
name = "tower"
|
|
1582
1285
|
version = "0.5.3"
|
|
@@ -1714,12 +1417,6 @@ version = "1.0.4"
|
|
|
1714
1417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
1418
|
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1716
1419
|
|
|
1717
|
-
[[package]]
|
|
1718
|
-
name = "vcpkg"
|
|
1719
|
-
version = "0.2.15"
|
|
1720
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
-
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1722
|
-
|
|
1723
1420
|
[[package]]
|
|
1724
1421
|
name = "version_check"
|
|
1725
1422
|
version = "0.9.5"
|
|
@@ -1752,9 +1449,9 @@ dependencies = [
|
|
|
1752
1449
|
|
|
1753
1450
|
[[package]]
|
|
1754
1451
|
name = "wasm-bindgen"
|
|
1755
|
-
version = "0.2.
|
|
1452
|
+
version = "0.2.114"
|
|
1756
1453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
-
checksum = "
|
|
1454
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1758
1455
|
dependencies = [
|
|
1759
1456
|
"cfg-if",
|
|
1760
1457
|
"once_cell",
|
|
@@ -1765,9 +1462,9 @@ dependencies = [
|
|
|
1765
1462
|
|
|
1766
1463
|
[[package]]
|
|
1767
1464
|
name = "wasm-bindgen-futures"
|
|
1768
|
-
version = "0.4.
|
|
1465
|
+
version = "0.4.64"
|
|
1769
1466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
-
checksum = "
|
|
1467
|
+
checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
|
|
1771
1468
|
dependencies = [
|
|
1772
1469
|
"cfg-if",
|
|
1773
1470
|
"futures-util",
|
|
@@ -1779,9 +1476,9 @@ dependencies = [
|
|
|
1779
1476
|
|
|
1780
1477
|
[[package]]
|
|
1781
1478
|
name = "wasm-bindgen-macro"
|
|
1782
|
-
version = "0.2.
|
|
1479
|
+
version = "0.2.114"
|
|
1783
1480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
-
checksum = "
|
|
1481
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1785
1482
|
dependencies = [
|
|
1786
1483
|
"quote",
|
|
1787
1484
|
"wasm-bindgen-macro-support",
|
|
@@ -1789,9 +1486,9 @@ dependencies = [
|
|
|
1789
1486
|
|
|
1790
1487
|
[[package]]
|
|
1791
1488
|
name = "wasm-bindgen-macro-support"
|
|
1792
|
-
version = "0.2.
|
|
1489
|
+
version = "0.2.114"
|
|
1793
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
-
checksum = "
|
|
1491
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1795
1492
|
dependencies = [
|
|
1796
1493
|
"bumpalo",
|
|
1797
1494
|
"proc-macro2",
|
|
@@ -1802,18 +1499,18 @@ dependencies = [
|
|
|
1802
1499
|
|
|
1803
1500
|
[[package]]
|
|
1804
1501
|
name = "wasm-bindgen-shared"
|
|
1805
|
-
version = "0.2.
|
|
1502
|
+
version = "0.2.114"
|
|
1806
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
1504
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1808
1505
|
dependencies = [
|
|
1809
1506
|
"unicode-ident",
|
|
1810
1507
|
]
|
|
1811
1508
|
|
|
1812
1509
|
[[package]]
|
|
1813
1510
|
name = "web-sys"
|
|
1814
|
-
version = "0.3.
|
|
1511
|
+
version = "0.3.91"
|
|
1815
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
1513
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
1817
1514
|
dependencies = [
|
|
1818
1515
|
"js-sys",
|
|
1819
1516
|
"wasm-bindgen",
|
|
@@ -1901,17 +1598,6 @@ version = "0.2.1"
|
|
|
1901
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
1599
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1903
1600
|
|
|
1904
|
-
[[package]]
|
|
1905
|
-
name = "windows-registry"
|
|
1906
|
-
version = "0.6.1"
|
|
1907
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
-
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
1909
|
-
dependencies = [
|
|
1910
|
-
"windows-link",
|
|
1911
|
-
"windows-result",
|
|
1912
|
-
"windows-strings",
|
|
1913
|
-
]
|
|
1914
|
-
|
|
1915
1601
|
[[package]]
|
|
1916
1602
|
name = "windows-result"
|
|
1917
1603
|
version = "0.4.1"
|
|
@@ -1939,6 +1625,15 @@ dependencies = [
|
|
|
1939
1625
|
"windows-targets 0.52.6",
|
|
1940
1626
|
]
|
|
1941
1627
|
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "windows-sys"
|
|
1630
|
+
version = "0.59.0"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"windows-targets 0.52.6",
|
|
1635
|
+
]
|
|
1636
|
+
|
|
1942
1637
|
[[package]]
|
|
1943
1638
|
name = "windows-sys"
|
|
1944
1639
|
version = "0.60.2"
|
|
@@ -2123,18 +1818,18 @@ dependencies = [
|
|
|
2123
1818
|
|
|
2124
1819
|
[[package]]
|
|
2125
1820
|
name = "zerocopy"
|
|
2126
|
-
version = "0.8.
|
|
1821
|
+
version = "0.8.47"
|
|
2127
1822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
-
checksum = "
|
|
1823
|
+
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
|
|
2129
1824
|
dependencies = [
|
|
2130
1825
|
"zerocopy-derive",
|
|
2131
1826
|
]
|
|
2132
1827
|
|
|
2133
1828
|
[[package]]
|
|
2134
1829
|
name = "zerocopy-derive"
|
|
2135
|
-
version = "0.8.
|
|
1830
|
+
version = "0.8.47"
|
|
2136
1831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
1832
|
+
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
|
|
2138
1833
|
dependencies = [
|
|
2139
1834
|
"proc-macro2",
|
|
2140
1835
|
"quote",
|