clawdex-mobile 5.1.3-internal.3 → 5.1.3-internal.4
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/README.md +12 -0
- package/docs/setup-and-operations.md +12 -0
- package/package.json +3 -1
- package/services/rust-bridge/Cargo.lock +126 -107
- package/services/rust-bridge/Cargo.toml +1 -1
- package/services/rust-bridge/src/main.rs +580 -35
- package/vendor/bridge-binaries/darwin-arm64/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/darwin-x64/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/linux-arm64/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/linux-armv7l/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/linux-x64/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/win32-x64/codex-rust-bridge.exe +0 -0
package/README.md
CHANGED
|
@@ -120,6 +120,16 @@ npm run setup:wizard
|
|
|
120
120
|
npm run mobile
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
+
For one-step restarts that switch the bridge network mode, reuse the existing token, start the
|
|
124
|
+
bridge in the background, and then launch Expo:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
npm run stack:lan
|
|
128
|
+
npm run stack:tailscale
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
`stack:lan` is the local network path, so it also covers the same-device LAN/VLAN case.
|
|
132
|
+
|
|
123
133
|
For an OpenCode-first repo checkout:
|
|
124
134
|
|
|
125
135
|
```bash
|
|
@@ -137,6 +147,8 @@ Use `npm run setup:wizard -- --no-start` if you only want to write config.
|
|
|
137
147
|
- `npm run setup:wizard`
|
|
138
148
|
- `npm run secure:bridge`
|
|
139
149
|
- `npm run mobile`
|
|
150
|
+
- `npm run stack:lan`
|
|
151
|
+
- `npm run stack:tailscale`
|
|
140
152
|
- `npm run ios`
|
|
141
153
|
- `npm run android`
|
|
142
154
|
- `npm run stop:services`
|
|
@@ -183,6 +183,18 @@ npm run mobile
|
|
|
183
183
|
|
|
184
184
|
`npm run mobile` uses `scripts/start-expo.sh`, which sets `REACT_NATIVE_PACKAGER_HOSTNAME` from your secure config so QR resolution is predictable.
|
|
185
185
|
|
|
186
|
+
If you want one command that switches the bridge between LAN/VLAN and Tailscale, preserves your
|
|
187
|
+
existing bridge token and enabled harnesses, restarts the bridge in the background, and then opens
|
|
188
|
+
Expo:
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
npm run stack:lan
|
|
192
|
+
npm run stack:tailscale
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Both wrappers call `scripts/start-mobile-stack.sh`. Pass `--expo ios` or `--expo android` if you
|
|
196
|
+
want the same flow but to open a native Expo run command instead of the default `mobile` mode.
|
|
197
|
+
|
|
186
198
|
## Advanced Knobs
|
|
187
199
|
|
|
188
200
|
Optional environment variables:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawdex-mobile",
|
|
3
|
-
"version": "5.1.3-internal.
|
|
3
|
+
"version": "5.1.3-internal.4",
|
|
4
4
|
"description": "Private-network mobile bridge and CLI for Codex and OpenCode",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codex",
|
|
@@ -52,6 +52,8 @@
|
|
|
52
52
|
"mobile": "./scripts/start-expo.sh mobile",
|
|
53
53
|
"ios": "./scripts/start-expo.sh ios",
|
|
54
54
|
"android": "./scripts/start-expo.sh android",
|
|
55
|
+
"stack:lan": "./scripts/start-mobile-stack-lan.sh",
|
|
56
|
+
"stack:tailscale": "./scripts/start-mobile-stack-tailscale.sh",
|
|
55
57
|
"bridge": "BRIDGE_WORKDIR=$(pwd) npm run -w @codex/rust-bridge dev",
|
|
56
58
|
"bridge:package:stage-current": "node ./scripts/bridge-binary.js stage-current",
|
|
57
59
|
"setup:wizard": "./scripts/setup-wizard.sh",
|
|
@@ -25,9 +25,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "axum"
|
|
28
|
-
version = "0.8.
|
|
28
|
+
version = "0.8.9"
|
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
-
checksum = "
|
|
30
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
31
31
|
dependencies = [
|
|
32
32
|
"axum-core",
|
|
33
33
|
"base64",
|
|
@@ -52,7 +52,7 @@ dependencies = [
|
|
|
52
52
|
"sha1",
|
|
53
53
|
"sync_wrapper",
|
|
54
54
|
"tokio",
|
|
55
|
-
"tokio-tungstenite",
|
|
55
|
+
"tokio-tungstenite 0.29.0",
|
|
56
56
|
"tower",
|
|
57
57
|
"tower-layer",
|
|
58
58
|
"tower-service",
|
|
@@ -86,9 +86,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
86
86
|
|
|
87
87
|
[[package]]
|
|
88
88
|
name = "bitflags"
|
|
89
|
-
version = "2.11.
|
|
89
|
+
version = "2.11.1"
|
|
90
90
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
91
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
92
92
|
|
|
93
93
|
[[package]]
|
|
94
94
|
name = "block-buffer"
|
|
@@ -113,9 +113,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
113
113
|
|
|
114
114
|
[[package]]
|
|
115
115
|
name = "cc"
|
|
116
|
-
version = "1.2.
|
|
116
|
+
version = "1.2.60"
|
|
117
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
-
checksum = "
|
|
118
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
119
119
|
dependencies = [
|
|
120
120
|
"find-msvc-tools",
|
|
121
121
|
"shlex",
|
|
@@ -149,7 +149,7 @@ dependencies = [
|
|
|
149
149
|
|
|
150
150
|
[[package]]
|
|
151
151
|
name = "codex-rust-bridge"
|
|
152
|
-
version = "5.1.3-internal.
|
|
152
|
+
version = "5.1.3-internal.4"
|
|
153
153
|
dependencies = [
|
|
154
154
|
"axum",
|
|
155
155
|
"base64",
|
|
@@ -162,7 +162,7 @@ dependencies = [
|
|
|
162
162
|
"serde_json",
|
|
163
163
|
"shlex",
|
|
164
164
|
"tokio",
|
|
165
|
-
"tokio-tungstenite",
|
|
165
|
+
"tokio-tungstenite 0.28.0",
|
|
166
166
|
]
|
|
167
167
|
|
|
168
168
|
[[package]]
|
|
@@ -408,9 +408,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
408
408
|
|
|
409
409
|
[[package]]
|
|
410
410
|
name = "hyper"
|
|
411
|
-
version = "1.
|
|
411
|
+
version = "1.9.0"
|
|
412
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
-
checksum = "
|
|
413
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
414
414
|
dependencies = [
|
|
415
415
|
"atomic-waker",
|
|
416
416
|
"bytes",
|
|
@@ -422,7 +422,6 @@ dependencies = [
|
|
|
422
422
|
"httpdate",
|
|
423
423
|
"itoa",
|
|
424
424
|
"pin-project-lite",
|
|
425
|
-
"pin-utils",
|
|
426
425
|
"smallvec",
|
|
427
426
|
"tokio",
|
|
428
427
|
"want",
|
|
@@ -430,19 +429,18 @@ dependencies = [
|
|
|
430
429
|
|
|
431
430
|
[[package]]
|
|
432
431
|
name = "hyper-rustls"
|
|
433
|
-
version = "0.27.
|
|
432
|
+
version = "0.27.9"
|
|
434
433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
-
checksum = "
|
|
434
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
436
435
|
dependencies = [
|
|
437
436
|
"http",
|
|
438
437
|
"hyper",
|
|
439
438
|
"hyper-util",
|
|
440
439
|
"rustls",
|
|
441
|
-
"rustls-pki-types",
|
|
442
440
|
"tokio",
|
|
443
441
|
"tokio-rustls",
|
|
444
442
|
"tower-service",
|
|
445
|
-
"webpki-roots 1.0.
|
|
443
|
+
"webpki-roots 1.0.7",
|
|
446
444
|
]
|
|
447
445
|
|
|
448
446
|
[[package]]
|
|
@@ -494,12 +492,13 @@ dependencies = [
|
|
|
494
492
|
|
|
495
493
|
[[package]]
|
|
496
494
|
name = "icu_collections"
|
|
497
|
-
version = "2.
|
|
495
|
+
version = "2.2.0"
|
|
498
496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
-
checksum = "
|
|
497
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
500
498
|
dependencies = [
|
|
501
499
|
"displaydoc",
|
|
502
500
|
"potential_utf",
|
|
501
|
+
"utf8_iter",
|
|
503
502
|
"yoke",
|
|
504
503
|
"zerofrom",
|
|
505
504
|
"zerovec",
|
|
@@ -507,9 +506,9 @@ dependencies = [
|
|
|
507
506
|
|
|
508
507
|
[[package]]
|
|
509
508
|
name = "icu_locale_core"
|
|
510
|
-
version = "2.
|
|
509
|
+
version = "2.2.0"
|
|
511
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
-
checksum = "
|
|
511
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
513
512
|
dependencies = [
|
|
514
513
|
"displaydoc",
|
|
515
514
|
"litemap",
|
|
@@ -520,9 +519,9 @@ dependencies = [
|
|
|
520
519
|
|
|
521
520
|
[[package]]
|
|
522
521
|
name = "icu_normalizer"
|
|
523
|
-
version = "2.
|
|
522
|
+
version = "2.2.0"
|
|
524
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
-
checksum = "
|
|
524
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
526
525
|
dependencies = [
|
|
527
526
|
"icu_collections",
|
|
528
527
|
"icu_normalizer_data",
|
|
@@ -534,15 +533,15 @@ dependencies = [
|
|
|
534
533
|
|
|
535
534
|
[[package]]
|
|
536
535
|
name = "icu_normalizer_data"
|
|
537
|
-
version = "2.
|
|
536
|
+
version = "2.2.0"
|
|
538
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
538
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
540
539
|
|
|
541
540
|
[[package]]
|
|
542
541
|
name = "icu_properties"
|
|
543
|
-
version = "2.
|
|
542
|
+
version = "2.2.0"
|
|
544
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
-
checksum = "
|
|
544
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
546
545
|
dependencies = [
|
|
547
546
|
"icu_collections",
|
|
548
547
|
"icu_locale_core",
|
|
@@ -554,15 +553,15 @@ dependencies = [
|
|
|
554
553
|
|
|
555
554
|
[[package]]
|
|
556
555
|
name = "icu_properties_data"
|
|
557
|
-
version = "2.
|
|
556
|
+
version = "2.2.0"
|
|
558
557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
-
checksum = "
|
|
558
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
560
559
|
|
|
561
560
|
[[package]]
|
|
562
561
|
name = "icu_provider"
|
|
563
|
-
version = "2.
|
|
562
|
+
version = "2.2.0"
|
|
564
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
-
checksum = "
|
|
564
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
566
565
|
dependencies = [
|
|
567
566
|
"displaydoc",
|
|
568
567
|
"icu_locale_core",
|
|
@@ -602,9 +601,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
|
602
601
|
|
|
603
602
|
[[package]]
|
|
604
603
|
name = "iri-string"
|
|
605
|
-
version = "0.7.
|
|
604
|
+
version = "0.7.12"
|
|
606
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
-
checksum = "
|
|
606
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
608
607
|
dependencies = [
|
|
609
608
|
"memchr",
|
|
610
609
|
"serde",
|
|
@@ -618,19 +617,21 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
618
617
|
|
|
619
618
|
[[package]]
|
|
620
619
|
name = "js-sys"
|
|
621
|
-
version = "0.3.
|
|
620
|
+
version = "0.3.95"
|
|
622
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
622
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
624
623
|
dependencies = [
|
|
624
|
+
"cfg-if",
|
|
625
|
+
"futures-util",
|
|
625
626
|
"once_cell",
|
|
626
627
|
"wasm-bindgen",
|
|
627
628
|
]
|
|
628
629
|
|
|
629
630
|
[[package]]
|
|
630
631
|
name = "libc"
|
|
631
|
-
version = "0.2.
|
|
632
|
+
version = "0.2.185"
|
|
632
633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
-
checksum = "
|
|
634
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
634
635
|
|
|
635
636
|
[[package]]
|
|
636
637
|
name = "linux-raw-sys"
|
|
@@ -640,9 +641,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
|
640
641
|
|
|
641
642
|
[[package]]
|
|
642
643
|
name = "litemap"
|
|
643
|
-
version = "0.8.
|
|
644
|
+
version = "0.8.2"
|
|
644
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
-
checksum = "
|
|
646
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
646
647
|
|
|
647
648
|
[[package]]
|
|
648
649
|
name = "lock_api"
|
|
@@ -695,9 +696,9 @@ dependencies = [
|
|
|
695
696
|
|
|
696
697
|
[[package]]
|
|
697
698
|
name = "mio"
|
|
698
|
-
version = "1.
|
|
699
|
+
version = "1.2.0"
|
|
699
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
-
checksum = "
|
|
701
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
701
702
|
dependencies = [
|
|
702
703
|
"libc",
|
|
703
704
|
"wasi",
|
|
@@ -754,17 +755,11 @@ version = "0.2.17"
|
|
|
754
755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
756
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
756
757
|
|
|
757
|
-
[[package]]
|
|
758
|
-
name = "pin-utils"
|
|
759
|
-
version = "0.1.0"
|
|
760
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
762
|
-
|
|
763
758
|
[[package]]
|
|
764
759
|
name = "potential_utf"
|
|
765
|
-
version = "0.1.
|
|
760
|
+
version = "0.1.5"
|
|
766
761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
762
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
768
763
|
dependencies = [
|
|
769
764
|
"zerovec",
|
|
770
765
|
]
|
|
@@ -875,9 +870,9 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
|
875
870
|
|
|
876
871
|
[[package]]
|
|
877
872
|
name = "rand"
|
|
878
|
-
version = "0.9.
|
|
873
|
+
version = "0.9.4"
|
|
879
874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
-
checksum = "
|
|
875
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
881
876
|
dependencies = [
|
|
882
877
|
"rand_chacha",
|
|
883
878
|
"rand_core",
|
|
@@ -950,7 +945,7 @@ dependencies = [
|
|
|
950
945
|
"wasm-bindgen-futures",
|
|
951
946
|
"wasm-streams",
|
|
952
947
|
"web-sys",
|
|
953
|
-
"webpki-roots 1.0.
|
|
948
|
+
"webpki-roots 1.0.7",
|
|
954
949
|
]
|
|
955
950
|
|
|
956
951
|
[[package]]
|
|
@@ -969,9 +964,9 @@ dependencies = [
|
|
|
969
964
|
|
|
970
965
|
[[package]]
|
|
971
966
|
name = "rustc-hash"
|
|
972
|
-
version = "2.1.
|
|
967
|
+
version = "2.1.2"
|
|
973
968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
-
checksum = "
|
|
969
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
975
970
|
|
|
976
971
|
[[package]]
|
|
977
972
|
name = "rustix"
|
|
@@ -988,9 +983,9 @@ dependencies = [
|
|
|
988
983
|
|
|
989
984
|
[[package]]
|
|
990
985
|
name = "rustls"
|
|
991
|
-
version = "0.23.
|
|
986
|
+
version = "0.23.38"
|
|
992
987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
-
checksum = "
|
|
988
|
+
checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
|
|
994
989
|
dependencies = [
|
|
995
990
|
"once_cell",
|
|
996
991
|
"ring",
|
|
@@ -1012,9 +1007,9 @@ dependencies = [
|
|
|
1012
1007
|
|
|
1013
1008
|
[[package]]
|
|
1014
1009
|
name = "rustls-webpki"
|
|
1015
|
-
version = "0.103.
|
|
1010
|
+
version = "0.103.12"
|
|
1016
1011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
-
checksum = "
|
|
1012
|
+
checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
|
|
1018
1013
|
dependencies = [
|
|
1019
1014
|
"ring",
|
|
1020
1015
|
"rustls-pki-types",
|
|
@@ -1219,9 +1214,9 @@ dependencies = [
|
|
|
1219
1214
|
|
|
1220
1215
|
[[package]]
|
|
1221
1216
|
name = "tinystr"
|
|
1222
|
-
version = "0.8.
|
|
1217
|
+
version = "0.8.3"
|
|
1223
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
-
checksum = "
|
|
1219
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1225
1220
|
dependencies = [
|
|
1226
1221
|
"displaydoc",
|
|
1227
1222
|
"zerovec",
|
|
@@ -1244,9 +1239,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1244
1239
|
|
|
1245
1240
|
[[package]]
|
|
1246
1241
|
name = "tokio"
|
|
1247
|
-
version = "1.
|
|
1242
|
+
version = "1.52.1"
|
|
1248
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
-
checksum = "
|
|
1244
|
+
checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
|
|
1250
1245
|
dependencies = [
|
|
1251
1246
|
"bytes",
|
|
1252
1247
|
"libc",
|
|
@@ -1261,9 +1256,9 @@ dependencies = [
|
|
|
1261
1256
|
|
|
1262
1257
|
[[package]]
|
|
1263
1258
|
name = "tokio-macros"
|
|
1264
|
-
version = "2.
|
|
1259
|
+
version = "2.7.0"
|
|
1265
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
-
checksum = "
|
|
1261
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1267
1262
|
dependencies = [
|
|
1268
1263
|
"proc-macro2",
|
|
1269
1264
|
"quote",
|
|
@@ -1292,10 +1287,22 @@ dependencies = [
|
|
|
1292
1287
|
"rustls-pki-types",
|
|
1293
1288
|
"tokio",
|
|
1294
1289
|
"tokio-rustls",
|
|
1295
|
-
"tungstenite",
|
|
1290
|
+
"tungstenite 0.28.0",
|
|
1296
1291
|
"webpki-roots 0.26.11",
|
|
1297
1292
|
]
|
|
1298
1293
|
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "tokio-tungstenite"
|
|
1296
|
+
version = "0.29.0"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
|
|
1299
|
+
dependencies = [
|
|
1300
|
+
"futures-util",
|
|
1301
|
+
"log",
|
|
1302
|
+
"tokio",
|
|
1303
|
+
"tungstenite 0.29.0",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1299
1306
|
[[package]]
|
|
1300
1307
|
name = "tokio-util"
|
|
1301
1308
|
version = "0.7.18"
|
|
@@ -1400,6 +1407,22 @@ dependencies = [
|
|
|
1400
1407
|
"utf-8",
|
|
1401
1408
|
]
|
|
1402
1409
|
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "tungstenite"
|
|
1412
|
+
version = "0.29.0"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"bytes",
|
|
1417
|
+
"data-encoding",
|
|
1418
|
+
"http",
|
|
1419
|
+
"httparse",
|
|
1420
|
+
"log",
|
|
1421
|
+
"rand",
|
|
1422
|
+
"sha1",
|
|
1423
|
+
"thiserror",
|
|
1424
|
+
]
|
|
1425
|
+
|
|
1403
1426
|
[[package]]
|
|
1404
1427
|
name = "typenum"
|
|
1405
1428
|
version = "1.19.0"
|
|
@@ -1471,18 +1494,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
1471
1494
|
|
|
1472
1495
|
[[package]]
|
|
1473
1496
|
name = "wasip2"
|
|
1474
|
-
version = "1.0.
|
|
1497
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1475
1498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
-
checksum = "
|
|
1499
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1477
1500
|
dependencies = [
|
|
1478
1501
|
"wit-bindgen",
|
|
1479
1502
|
]
|
|
1480
1503
|
|
|
1481
1504
|
[[package]]
|
|
1482
1505
|
name = "wasm-bindgen"
|
|
1483
|
-
version = "0.2.
|
|
1506
|
+
version = "0.2.118"
|
|
1484
1507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1508
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
1486
1509
|
dependencies = [
|
|
1487
1510
|
"cfg-if",
|
|
1488
1511
|
"once_cell",
|
|
@@ -1493,23 +1516,19 @@ dependencies = [
|
|
|
1493
1516
|
|
|
1494
1517
|
[[package]]
|
|
1495
1518
|
name = "wasm-bindgen-futures"
|
|
1496
|
-
version = "0.4.
|
|
1519
|
+
version = "0.4.68"
|
|
1497
1520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1521
|
+
checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
|
|
1499
1522
|
dependencies = [
|
|
1500
|
-
"cfg-if",
|
|
1501
|
-
"futures-util",
|
|
1502
1523
|
"js-sys",
|
|
1503
|
-
"once_cell",
|
|
1504
1524
|
"wasm-bindgen",
|
|
1505
|
-
"web-sys",
|
|
1506
1525
|
]
|
|
1507
1526
|
|
|
1508
1527
|
[[package]]
|
|
1509
1528
|
name = "wasm-bindgen-macro"
|
|
1510
|
-
version = "0.2.
|
|
1529
|
+
version = "0.2.118"
|
|
1511
1530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
-
checksum = "
|
|
1531
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
1513
1532
|
dependencies = [
|
|
1514
1533
|
"quote",
|
|
1515
1534
|
"wasm-bindgen-macro-support",
|
|
@@ -1517,9 +1536,9 @@ dependencies = [
|
|
|
1517
1536
|
|
|
1518
1537
|
[[package]]
|
|
1519
1538
|
name = "wasm-bindgen-macro-support"
|
|
1520
|
-
version = "0.2.
|
|
1539
|
+
version = "0.2.118"
|
|
1521
1540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
-
checksum = "
|
|
1541
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
1523
1542
|
dependencies = [
|
|
1524
1543
|
"bumpalo",
|
|
1525
1544
|
"proc-macro2",
|
|
@@ -1530,9 +1549,9 @@ dependencies = [
|
|
|
1530
1549
|
|
|
1531
1550
|
[[package]]
|
|
1532
1551
|
name = "wasm-bindgen-shared"
|
|
1533
|
-
version = "0.2.
|
|
1552
|
+
version = "0.2.118"
|
|
1534
1553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
-
checksum = "
|
|
1554
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
1536
1555
|
dependencies = [
|
|
1537
1556
|
"unicode-ident",
|
|
1538
1557
|
]
|
|
@@ -1552,9 +1571,9 @@ dependencies = [
|
|
|
1552
1571
|
|
|
1553
1572
|
[[package]]
|
|
1554
1573
|
name = "web-sys"
|
|
1555
|
-
version = "0.3.
|
|
1574
|
+
version = "0.3.95"
|
|
1556
1575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
-
checksum = "
|
|
1576
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
1558
1577
|
dependencies = [
|
|
1559
1578
|
"js-sys",
|
|
1560
1579
|
"wasm-bindgen",
|
|
@@ -1576,14 +1595,14 @@ version = "0.26.11"
|
|
|
1576
1595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
1596
|
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
1578
1597
|
dependencies = [
|
|
1579
|
-
"webpki-roots 1.0.
|
|
1598
|
+
"webpki-roots 1.0.7",
|
|
1580
1599
|
]
|
|
1581
1600
|
|
|
1582
1601
|
[[package]]
|
|
1583
1602
|
name = "webpki-roots"
|
|
1584
|
-
version = "1.0.
|
|
1603
|
+
version = "1.0.7"
|
|
1585
1604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
-
checksum = "
|
|
1605
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
1587
1606
|
dependencies = [
|
|
1588
1607
|
"rustls-pki-types",
|
|
1589
1608
|
]
|
|
@@ -1836,21 +1855,21 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
|
1836
1855
|
|
|
1837
1856
|
[[package]]
|
|
1838
1857
|
name = "wit-bindgen"
|
|
1839
|
-
version = "0.
|
|
1858
|
+
version = "0.57.1"
|
|
1840
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
-
checksum = "
|
|
1860
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1842
1861
|
|
|
1843
1862
|
[[package]]
|
|
1844
1863
|
name = "writeable"
|
|
1845
|
-
version = "0.6.
|
|
1864
|
+
version = "0.6.3"
|
|
1846
1865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
-
checksum = "
|
|
1866
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1848
1867
|
|
|
1849
1868
|
[[package]]
|
|
1850
1869
|
name = "yoke"
|
|
1851
|
-
version = "0.8.
|
|
1870
|
+
version = "0.8.2"
|
|
1852
1871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1872
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1854
1873
|
dependencies = [
|
|
1855
1874
|
"stable_deref_trait",
|
|
1856
1875
|
"yoke-derive",
|
|
@@ -1859,9 +1878,9 @@ dependencies = [
|
|
|
1859
1878
|
|
|
1860
1879
|
[[package]]
|
|
1861
1880
|
name = "yoke-derive"
|
|
1862
|
-
version = "0.8.
|
|
1881
|
+
version = "0.8.2"
|
|
1863
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
-
checksum = "
|
|
1883
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1865
1884
|
dependencies = [
|
|
1866
1885
|
"proc-macro2",
|
|
1867
1886
|
"quote",
|
|
@@ -1871,18 +1890,18 @@ dependencies = [
|
|
|
1871
1890
|
|
|
1872
1891
|
[[package]]
|
|
1873
1892
|
name = "zerocopy"
|
|
1874
|
-
version = "0.8.
|
|
1893
|
+
version = "0.8.48"
|
|
1875
1894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
-
checksum = "
|
|
1895
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1877
1896
|
dependencies = [
|
|
1878
1897
|
"zerocopy-derive",
|
|
1879
1898
|
]
|
|
1880
1899
|
|
|
1881
1900
|
[[package]]
|
|
1882
1901
|
name = "zerocopy-derive"
|
|
1883
|
-
version = "0.8.
|
|
1902
|
+
version = "0.8.48"
|
|
1884
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
-
checksum = "
|
|
1904
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1886
1905
|
dependencies = [
|
|
1887
1906
|
"proc-macro2",
|
|
1888
1907
|
"quote",
|
|
@@ -1891,18 +1910,18 @@ dependencies = [
|
|
|
1891
1910
|
|
|
1892
1911
|
[[package]]
|
|
1893
1912
|
name = "zerofrom"
|
|
1894
|
-
version = "0.1.
|
|
1913
|
+
version = "0.1.7"
|
|
1895
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
-
checksum = "
|
|
1915
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
1897
1916
|
dependencies = [
|
|
1898
1917
|
"zerofrom-derive",
|
|
1899
1918
|
]
|
|
1900
1919
|
|
|
1901
1920
|
[[package]]
|
|
1902
1921
|
name = "zerofrom-derive"
|
|
1903
|
-
version = "0.1.
|
|
1922
|
+
version = "0.1.7"
|
|
1904
1923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
-
checksum = "
|
|
1924
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1906
1925
|
dependencies = [
|
|
1907
1926
|
"proc-macro2",
|
|
1908
1927
|
"quote",
|
|
@@ -1918,9 +1937,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
1918
1937
|
|
|
1919
1938
|
[[package]]
|
|
1920
1939
|
name = "zerotrie"
|
|
1921
|
-
version = "0.2.
|
|
1940
|
+
version = "0.2.4"
|
|
1922
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
-
checksum = "
|
|
1942
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1924
1943
|
dependencies = [
|
|
1925
1944
|
"displaydoc",
|
|
1926
1945
|
"yoke",
|
|
@@ -1929,9 +1948,9 @@ dependencies = [
|
|
|
1929
1948
|
|
|
1930
1949
|
[[package]]
|
|
1931
1950
|
name = "zerovec"
|
|
1932
|
-
version = "0.11.
|
|
1951
|
+
version = "0.11.6"
|
|
1933
1952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
-
checksum = "
|
|
1953
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1935
1954
|
dependencies = [
|
|
1936
1955
|
"yoke",
|
|
1937
1956
|
"zerofrom",
|
|
@@ -1940,9 +1959,9 @@ dependencies = [
|
|
|
1940
1959
|
|
|
1941
1960
|
[[package]]
|
|
1942
1961
|
name = "zerovec-derive"
|
|
1943
|
-
version = "0.11.
|
|
1962
|
+
version = "0.11.3"
|
|
1944
1963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1945
|
-
checksum = "
|
|
1964
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1946
1965
|
dependencies = [
|
|
1947
1966
|
"proc-macro2",
|
|
1948
1967
|
"quote",
|