clawdex-mobile 2.0.1 → 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 +1 -1
- 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 +56 -47
- package/services/rust-bridge/Cargo.toml +1 -1
- 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
package/apps/mobile/src/theme.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Platform
|
|
1
|
+
import { Platform } from 'react-native';
|
|
2
2
|
|
|
3
3
|
export const colors = {
|
|
4
4
|
// Backgrounds
|
|
@@ -68,17 +68,11 @@ export const radius = {
|
|
|
68
68
|
full: 999,
|
|
69
69
|
};
|
|
70
70
|
|
|
71
|
-
export const shadow =
|
|
72
|
-
sm:
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
shadowOpacity: 0.3,
|
|
77
|
-
shadowRadius: 6,
|
|
78
|
-
},
|
|
79
|
-
default: { elevation: 3 },
|
|
80
|
-
}) as object,
|
|
81
|
-
});
|
|
71
|
+
export const shadow = {
|
|
72
|
+
sm: {
|
|
73
|
+
boxShadow: '0px 2px 6px rgba(0, 0, 0, 0.3)',
|
|
74
|
+
},
|
|
75
|
+
} as const;
|
|
82
76
|
|
|
83
77
|
export const typography = {
|
|
84
78
|
largeTitle: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Codex App-Server + CLI Gap Tracker
|
|
2
2
|
|
|
3
|
-
Last updated:
|
|
3
|
+
Last updated: March 20, 2026
|
|
4
4
|
|
|
5
5
|
## Scope
|
|
6
6
|
This tracker compares `clawdex-mobile` against current Codex app-server + CLI capabilities and records what still needs to be added.
|
|
@@ -49,12 +49,21 @@ Status: In progress (first implementation pass completed)
|
|
|
49
49
|
## Remaining Gaps (Beyond Gap 1)
|
|
50
50
|
|
|
51
51
|
### Gap 2: Slash Command Coverage in Mobile
|
|
52
|
-
-
|
|
53
|
-
- Mobile
|
|
52
|
+
- Status: In progress
|
|
53
|
+
- Mobile now supports `/agent` thread switching, sub-agent transcript cards, and nested sub-agent rows in the drawer so spawned workers are visible in the main conversation model instead of being hidden behind generic tool-call traces.
|
|
54
|
+
- Mobile still does not expose the full Codex desktop slash-command surface as dedicated UI actions.
|
|
55
|
+
- Agent management remains lightweight:
|
|
56
|
+
- no dedicated create/configure sub-agent surface beyond `/agent`
|
|
57
|
+
- no richer per-agent live status/dashboard view
|
|
54
58
|
|
|
55
59
|
### Gap 3: Account/Auth UX
|
|
56
|
-
-
|
|
57
|
-
-
|
|
60
|
+
- Status: In progress
|
|
61
|
+
- Mobile Settings now exposes read-only account state via `account/read`, including ChatGPT email + plan type when available.
|
|
62
|
+
- Remaining:
|
|
63
|
+
- no dedicated standalone account screen outside Settings
|
|
64
|
+
- login/logout is not user-driven in mobile UI yet
|
|
65
|
+
- auth refresh is still operationally env-driven in bridge, not user-driven in app
|
|
66
|
+
- no API-key entry flow in mobile UI
|
|
58
67
|
|
|
59
68
|
### Gap 4: MCP + Tooling UX
|
|
60
69
|
- No end-to-end UI for MCP server status, reload, OAuth login, or remote skills list/export.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Privacy Policy
|
|
2
|
+
|
|
3
|
+
Last updated: March 6, 2026
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Clawdex Mobile is a companion app for connecting to a bridge service that you run on your own machine. The app is designed for trusted private networking, such as LAN, VPN, or Tailscale. It is not a public multi-tenant shell service.
|
|
8
|
+
|
|
9
|
+
## Information Processed
|
|
10
|
+
|
|
11
|
+
Clawdex Mobile can process:
|
|
12
|
+
|
|
13
|
+
- Chat prompts and assistant responses
|
|
14
|
+
- Bridge connection details you enter in the app
|
|
15
|
+
- Terminal command text and command output returned by your bridge
|
|
16
|
+
- Git repository status, diffs, commit messages, and related metadata
|
|
17
|
+
- File or image attachments you choose to send
|
|
18
|
+
- Voice input audio used for speech-to-text features
|
|
19
|
+
|
|
20
|
+
## How Information Is Used
|
|
21
|
+
|
|
22
|
+
The app uses this information to:
|
|
23
|
+
|
|
24
|
+
- connect your phone to your self-hosted bridge
|
|
25
|
+
- display and continue assistant threads
|
|
26
|
+
- execute approved terminal and Git workflows on infrastructure you control
|
|
27
|
+
- upload user-selected files and images to your own workflow
|
|
28
|
+
- support optional voice-to-text input
|
|
29
|
+
|
|
30
|
+
## Storage and Retention
|
|
31
|
+
|
|
32
|
+
Clawdex Mobile does not define a separate cloud retention layer for your project data. Data is generally stored by services and infrastructure you control, including your local bridge, repository, logs, caches, and any model providers or integrations that you configure.
|
|
33
|
+
|
|
34
|
+
## Sharing
|
|
35
|
+
|
|
36
|
+
Clawdex Mobile does not include advertising SDKs. Data may be transmitted to third-party model or infrastructure providers only when you configure and use those services as part of your own setup.
|
|
37
|
+
|
|
38
|
+
## Security
|
|
39
|
+
|
|
40
|
+
Security depends on how you configure your bridge and network. The app is intended for trusted-network use. You are responsible for protecting bridge tokens, provider credentials, repository access, and device access.
|
|
41
|
+
|
|
42
|
+
## Your Responsibility
|
|
43
|
+
|
|
44
|
+
You are responsible for:
|
|
45
|
+
|
|
46
|
+
- operating the bridge only on systems you own or are authorized to control
|
|
47
|
+
- securing your network path and credentials
|
|
48
|
+
- reviewing commands, approvals, and repository actions before execution
|
|
49
|
+
|
|
50
|
+
## Contact
|
|
51
|
+
|
|
52
|
+
For support, use the project support channel:
|
|
53
|
+
|
|
54
|
+
https://github.com/Mohit-Patil/clawdex-mobile/issues
|
|
@@ -140,9 +140,10 @@ Expected response contains `"status":"ok"`.
|
|
|
140
140
|
### Choosing Start Directory
|
|
141
141
|
|
|
142
142
|
1. Open sidebar
|
|
143
|
-
2. Under `Start Directory`, pick:
|
|
144
|
-
- `Bridge default workspace
|
|
145
|
-
- a discovered workspace path from existing chats
|
|
143
|
+
2. Under `Start Directory`, pick either:
|
|
144
|
+
- `Bridge default workspace`
|
|
145
|
+
- a discovered workspace path from existing Codex chats
|
|
146
|
+
- any folder on the bridge host via the built-in folder browser or manual path entry
|
|
146
147
|
|
|
147
148
|
Behavior:
|
|
148
149
|
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Terms of Service
|
|
2
|
+
|
|
3
|
+
Last updated: March 6, 2026
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Clawdex Mobile is a companion client for interacting with a bridge service and repository environment that you control. By using the app, you agree to use it only with systems, repositories, and infrastructure that you own or are explicitly authorized to access.
|
|
8
|
+
|
|
9
|
+
## Acceptable Use
|
|
10
|
+
|
|
11
|
+
You may not use Clawdex Mobile to access, control, or modify machines, repositories, or services without authorization. You are responsible for all actions initiated through the app, including approvals, terminal commands, Git actions, and file transfers.
|
|
12
|
+
|
|
13
|
+
## Credentials and Access
|
|
14
|
+
|
|
15
|
+
You must keep bridge tokens, provider credentials, repository credentials, and device access secure. If you believe credentials have been exposed, you should rotate them immediately and stop using the affected bridge until it is secured.
|
|
16
|
+
|
|
17
|
+
## Operational Risk
|
|
18
|
+
|
|
19
|
+
Clawdex Mobile can initiate workflows that change files, repositories, and machine state on your host environment. You are responsible for reviewing and approving actions before execution and for maintaining backups or recovery procedures appropriate to your environment.
|
|
20
|
+
|
|
21
|
+
## Availability
|
|
22
|
+
|
|
23
|
+
The app depends on your bridge, network, repositories, model providers, and related services. Functionality may be unavailable if those dependencies are unavailable or misconfigured.
|
|
24
|
+
|
|
25
|
+
## No Warranty
|
|
26
|
+
|
|
27
|
+
The software is provided on an as-is basis. You assume responsibility for how it is configured and used in your environment.
|
|
28
|
+
|
|
29
|
+
## Contact
|
|
30
|
+
|
|
31
|
+
For support, use the project support channel:
|
|
32
|
+
|
|
33
|
+
https://github.com/Mohit-Patil/clawdex-mobile/issues
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawdex-mobile",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"homepage": "https://github.com/Mohit-Patil/clawdex-mobile#readme",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@types/react": "~19.2.10",
|
|
39
|
+
"expo": "^55.0.8",
|
|
39
40
|
"react": "19.2.0",
|
|
40
41
|
"react-dom": "19.2.0",
|
|
41
|
-
"react-native": "0.83.2"
|
|
42
|
-
"expo": "^55.0.2"
|
|
42
|
+
"react-native": "0.83.2"
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@fastify/cors": "^10.0.2",
|
|
16
16
|
"@fastify/websocket": "^11.0.2",
|
|
17
|
-
"fastify": "^5.2
|
|
17
|
+
"fastify": "^5.8.2",
|
|
18
18
|
"zod": "^3.24.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/node": "^22.
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
23
|
-
"@typescript-eslint/parser": "^8.
|
|
24
|
-
"eslint": "^10.0.
|
|
21
|
+
"@types/node": "^22.19.15",
|
|
22
|
+
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
23
|
+
"@typescript-eslint/parser": "^8.57.1",
|
|
24
|
+
"eslint": "^10.0.3",
|
|
25
25
|
"globals": "^16.5.0",
|
|
26
26
|
"tsx": "^4.19.2",
|
|
27
27
|
"typescript": "^5.7.2",
|
|
28
|
-
"vitest": "^4.0
|
|
28
|
+
"vitest": "^4.1.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -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",
|
|
@@ -586,9 +586,9 @@ dependencies = [
|
|
|
586
586
|
|
|
587
587
|
[[package]]
|
|
588
588
|
name = "ipnet"
|
|
589
|
-
version = "2.
|
|
589
|
+
version = "2.12.0"
|
|
590
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
-
checksum = "
|
|
591
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
592
592
|
|
|
593
593
|
[[package]]
|
|
594
594
|
name = "iri-string"
|
|
@@ -602,15 +602,15 @@ dependencies = [
|
|
|
602
602
|
|
|
603
603
|
[[package]]
|
|
604
604
|
name = "itoa"
|
|
605
|
-
version = "1.0.
|
|
605
|
+
version = "1.0.18"
|
|
606
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
-
checksum = "
|
|
607
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
608
608
|
|
|
609
609
|
[[package]]
|
|
610
610
|
name = "js-sys"
|
|
611
|
-
version = "0.3.
|
|
611
|
+
version = "0.3.91"
|
|
612
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "
|
|
613
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
614
614
|
dependencies = [
|
|
615
615
|
"once_cell",
|
|
616
616
|
"wasm-bindgen",
|
|
@@ -618,9 +618,9 @@ dependencies = [
|
|
|
618
618
|
|
|
619
619
|
[[package]]
|
|
620
620
|
name = "libc"
|
|
621
|
-
version = "0.2.
|
|
621
|
+
version = "0.2.183"
|
|
622
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
623
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
624
624
|
|
|
625
625
|
[[package]]
|
|
626
626
|
name = "linux-raw-sys"
|
|
@@ -705,9 +705,9 @@ dependencies = [
|
|
|
705
705
|
|
|
706
706
|
[[package]]
|
|
707
707
|
name = "once_cell"
|
|
708
|
-
version = "1.21.
|
|
708
|
+
version = "1.21.4"
|
|
709
709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
-
checksum = "
|
|
710
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
711
711
|
|
|
712
712
|
[[package]]
|
|
713
713
|
name = "parking_lot"
|
|
@@ -740,9 +740,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
740
740
|
|
|
741
741
|
[[package]]
|
|
742
742
|
name = "pin-project-lite"
|
|
743
|
-
version = "0.2.
|
|
743
|
+
version = "0.2.17"
|
|
744
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
-
checksum = "
|
|
745
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
746
746
|
|
|
747
747
|
[[package]]
|
|
748
748
|
name = "pin-utils"
|
|
@@ -815,9 +815,9 @@ dependencies = [
|
|
|
815
815
|
|
|
816
816
|
[[package]]
|
|
817
817
|
name = "quinn-proto"
|
|
818
|
-
version = "0.11.
|
|
818
|
+
version = "0.11.14"
|
|
819
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
-
checksum = "
|
|
820
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
821
821
|
dependencies = [
|
|
822
822
|
"bytes",
|
|
823
823
|
"getrandom 0.3.4",
|
|
@@ -850,9 +850,9 @@ dependencies = [
|
|
|
850
850
|
|
|
851
851
|
[[package]]
|
|
852
852
|
name = "quote"
|
|
853
|
-
version = "1.0.
|
|
853
|
+
version = "1.0.45"
|
|
854
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
855
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
856
856
|
dependencies = [
|
|
857
857
|
"proc-macro2",
|
|
858
858
|
]
|
|
@@ -971,7 +971,7 @@ dependencies = [
|
|
|
971
971
|
"errno",
|
|
972
972
|
"libc",
|
|
973
973
|
"linux-raw-sys",
|
|
974
|
-
"windows-sys 0.
|
|
974
|
+
"windows-sys 0.59.0",
|
|
975
975
|
]
|
|
976
976
|
|
|
977
977
|
[[package]]
|
|
@@ -1134,12 +1134,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1134
1134
|
|
|
1135
1135
|
[[package]]
|
|
1136
1136
|
name = "socket2"
|
|
1137
|
-
version = "0.6.
|
|
1137
|
+
version = "0.6.3"
|
|
1138
1138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
-
checksum = "
|
|
1139
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1140
1140
|
dependencies = [
|
|
1141
1141
|
"libc",
|
|
1142
|
-
"windows-sys 0.
|
|
1142
|
+
"windows-sys 0.61.2",
|
|
1143
1143
|
]
|
|
1144
1144
|
|
|
1145
1145
|
[[package]]
|
|
@@ -1217,9 +1217,9 @@ dependencies = [
|
|
|
1217
1217
|
|
|
1218
1218
|
[[package]]
|
|
1219
1219
|
name = "tinyvec"
|
|
1220
|
-
version = "1.
|
|
1220
|
+
version = "1.11.0"
|
|
1221
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
-
checksum = "
|
|
1222
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1223
1223
|
dependencies = [
|
|
1224
1224
|
"tinyvec_macros",
|
|
1225
1225
|
]
|
|
@@ -1232,9 +1232,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1232
1232
|
|
|
1233
1233
|
[[package]]
|
|
1234
1234
|
name = "tokio"
|
|
1235
|
-
version = "1.
|
|
1235
|
+
version = "1.50.0"
|
|
1236
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
-
checksum = "
|
|
1237
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
1238
1238
|
dependencies = [
|
|
1239
1239
|
"bytes",
|
|
1240
1240
|
"libc",
|
|
@@ -1249,9 +1249,9 @@ dependencies = [
|
|
|
1249
1249
|
|
|
1250
1250
|
[[package]]
|
|
1251
1251
|
name = "tokio-macros"
|
|
1252
|
-
version = "2.6.
|
|
1252
|
+
version = "2.6.1"
|
|
1253
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1254
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
1255
1255
|
dependencies = [
|
|
1256
1256
|
"proc-macro2",
|
|
1257
1257
|
"quote",
|
|
@@ -1449,9 +1449,9 @@ dependencies = [
|
|
|
1449
1449
|
|
|
1450
1450
|
[[package]]
|
|
1451
1451
|
name = "wasm-bindgen"
|
|
1452
|
-
version = "0.2.
|
|
1452
|
+
version = "0.2.114"
|
|
1453
1453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
-
checksum = "
|
|
1454
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1455
1455
|
dependencies = [
|
|
1456
1456
|
"cfg-if",
|
|
1457
1457
|
"once_cell",
|
|
@@ -1462,9 +1462,9 @@ dependencies = [
|
|
|
1462
1462
|
|
|
1463
1463
|
[[package]]
|
|
1464
1464
|
name = "wasm-bindgen-futures"
|
|
1465
|
-
version = "0.4.
|
|
1465
|
+
version = "0.4.64"
|
|
1466
1466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
-
checksum = "
|
|
1467
|
+
checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
|
|
1468
1468
|
dependencies = [
|
|
1469
1469
|
"cfg-if",
|
|
1470
1470
|
"futures-util",
|
|
@@ -1476,9 +1476,9 @@ dependencies = [
|
|
|
1476
1476
|
|
|
1477
1477
|
[[package]]
|
|
1478
1478
|
name = "wasm-bindgen-macro"
|
|
1479
|
-
version = "0.2.
|
|
1479
|
+
version = "0.2.114"
|
|
1480
1480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
-
checksum = "
|
|
1481
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1482
1482
|
dependencies = [
|
|
1483
1483
|
"quote",
|
|
1484
1484
|
"wasm-bindgen-macro-support",
|
|
@@ -1486,9 +1486,9 @@ dependencies = [
|
|
|
1486
1486
|
|
|
1487
1487
|
[[package]]
|
|
1488
1488
|
name = "wasm-bindgen-macro-support"
|
|
1489
|
-
version = "0.2.
|
|
1489
|
+
version = "0.2.114"
|
|
1490
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1491
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1492
1492
|
dependencies = [
|
|
1493
1493
|
"bumpalo",
|
|
1494
1494
|
"proc-macro2",
|
|
@@ -1499,18 +1499,18 @@ dependencies = [
|
|
|
1499
1499
|
|
|
1500
1500
|
[[package]]
|
|
1501
1501
|
name = "wasm-bindgen-shared"
|
|
1502
|
-
version = "0.2.
|
|
1502
|
+
version = "0.2.114"
|
|
1503
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
-
checksum = "
|
|
1504
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1505
1505
|
dependencies = [
|
|
1506
1506
|
"unicode-ident",
|
|
1507
1507
|
]
|
|
1508
1508
|
|
|
1509
1509
|
[[package]]
|
|
1510
1510
|
name = "web-sys"
|
|
1511
|
-
version = "0.3.
|
|
1511
|
+
version = "0.3.91"
|
|
1512
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
-
checksum = "
|
|
1513
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
1514
1514
|
dependencies = [
|
|
1515
1515
|
"js-sys",
|
|
1516
1516
|
"wasm-bindgen",
|
|
@@ -1625,6 +1625,15 @@ dependencies = [
|
|
|
1625
1625
|
"windows-targets 0.52.6",
|
|
1626
1626
|
]
|
|
1627
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
|
+
|
|
1628
1637
|
[[package]]
|
|
1629
1638
|
name = "windows-sys"
|
|
1630
1639
|
version = "0.60.2"
|
|
@@ -1809,18 +1818,18 @@ dependencies = [
|
|
|
1809
1818
|
|
|
1810
1819
|
[[package]]
|
|
1811
1820
|
name = "zerocopy"
|
|
1812
|
-
version = "0.8.
|
|
1821
|
+
version = "0.8.47"
|
|
1813
1822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
-
checksum = "
|
|
1823
|
+
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
|
|
1815
1824
|
dependencies = [
|
|
1816
1825
|
"zerocopy-derive",
|
|
1817
1826
|
]
|
|
1818
1827
|
|
|
1819
1828
|
[[package]]
|
|
1820
1829
|
name = "zerocopy-derive"
|
|
1821
|
-
version = "0.8.
|
|
1830
|
+
version = "0.8.47"
|
|
1822
1831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
-
checksum = "
|
|
1832
|
+
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
|
|
1824
1833
|
dependencies = [
|
|
1825
1834
|
"proc-macro2",
|
|
1826
1835
|
"quote",
|