maka-agent 0.2.0-dev.11.20260831 → 0.2.0-dev.14.20260902
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/LICENSE +2 -2
- package/RUNTIME_HOST_PEER_DEPENDENCIES.rust.tsv +70 -0
- package/RUNTIME_HOST_PEER_THIRD_PARTY_NOTICES.txt +1839 -140
- package/THIRD_PARTY_NOTICES.txt +2 -2
- package/dist/acp/maka-acp-agent.js +6 -3
- package/dist/acp/session-registry.js +307 -0
- package/dist/acp/stdio-server.js +20 -1
- package/dist/cli-core.js +40 -3
- package/dist/mcp-capability-provider.js +1 -1
- package/dist/onboarding-catalog.js +3 -5
- package/dist/pi-transcript.js +21 -17
- package/dist/pi-tui-layout.js +4 -2
- package/dist/pi-tui-mcp-status.js +44 -130
- package/dist/pi-tui-pickers.js +11 -5
- package/dist/pi-tui-runner.js +133 -102
- package/dist/runtime-host-access-command.js +37 -4
- package/dist/runtime-host-capability-provider-command.js +16 -2
- package/dist/runtime-host-cli-context.js +73 -3
- package/dist/runtime-host-cli.js +187 -10
- package/dist/runtime-host-lifecycle-transaction.js +5 -2
- package/dist/runtime-host-managed-lifecycle-manager.js +1 -0
- package/dist/runtime-host-onboarding.js +12 -16
- package/dist/runtime-host-peer-management-command.js +16 -4
- package/dist/runtime-host-plugin-command.js +101 -0
- package/dist/runtime-host-run-command.js +8 -2
- package/dist/runtime-host-service-management-command.js +2 -1
- package/dist/runtime-host-setup-command.js +1 -0
- package/dist/runtime-host-task-readiness.js +2 -3
- package/dist/runtime-host-tui-command.js +1 -1
- package/dist/runtime-host-tui-context.js +18 -5
- package/dist/runtime-host-update-command.js +71 -35
- package/dist/runtime-host-update-discovery.js +1 -0
- package/dist/tui-clipboard.js +86 -0
- package/dist/tui-copy-catalog.js +248 -0
- package/dist/tui-copy-command.js +103 -0
- package/native/runtime-host-peer/prebuilds/darwin-arm64/maka_runtime_host_peer.node +0 -0
- package/native/runtime-host-peer/prebuilds/linux-arm64/maka_runtime_host_peer.node +0 -0
- package/native/runtime-host-peer/prebuilds/linux-x64/maka_runtime_host_peer.node +0 -0
- package/native/runtime-host-peer/prebuilds/win32-x64/maka_runtime_host_peer.node +0 -0
- package/node_modules/@maka/core/dist/attachments.js +92 -1
- package/node_modules/@maka/core/dist/bounded-response.js +71 -0
- package/node_modules/@maka/core/dist/chat-model-choice.js +8 -33
- package/node_modules/@maka/core/dist/client-capability-grant.js +149 -0
- package/node_modules/@maka/core/dist/connection-error-copy.js +17 -34
- package/node_modules/@maka/core/dist/connection-readiness.js +3 -31
- package/node_modules/@maka/core/dist/deep-research.js +1 -20
- package/node_modules/@maka/core/dist/events.js +22 -14
- package/node_modules/@maka/core/dist/foreign-session.js +2 -2
- package/node_modules/@maka/core/dist/interaction.js +49 -2
- package/node_modules/@maka/core/dist/llm-connections.js +74 -82
- package/node_modules/@maka/core/dist/maka-wordmark.js +23 -0
- package/node_modules/@maka/core/dist/model-catalog.js +242 -315
- package/node_modules/@maka/core/dist/model-facts.js +13 -19
- package/node_modules/@maka/core/dist/model-metadata.generated.js +1907 -1872
- package/node_modules/@maka/core/dist/model-metadata.js +184 -199
- package/node_modules/@maka/core/dist/model-thinking.js +1 -1
- package/node_modules/@maka/core/dist/models-dev-projection.js +302 -0
- package/node_modules/@maka/core/dist/models-dev-refresh.js +55 -0
- package/node_modules/@maka/core/dist/onboarding.js +2 -1
- package/node_modules/@maka/core/dist/provider-auth.js +47 -291
- package/node_modules/@maka/core/dist/provider-registry.js +68 -357
- package/node_modules/@maka/core/dist/runtime-event.js +5 -0
- package/node_modules/@maka/core/dist/runtime-policy/connection-catalog-codec.js +83 -18
- package/node_modules/@maka/core/dist/runtime-policy/credential-vault-codec.js +9 -1
- package/node_modules/@maka/core/dist/runtime-policy/model-catalog-entry-codec.js +84 -0
- package/node_modules/@maka/core/dist/runtime-policy/policy-codec.js +75 -0
- package/node_modules/@maka/core/dist/runtime-policy.js +5 -2
- package/node_modules/@maka/core/dist/session-send-projection.js +2 -1
- package/node_modules/@maka/core/dist/session-start-mode.js +42 -0
- package/node_modules/@maka/core/dist/session.js +120 -5
- package/node_modules/@maka/core/dist/settings.js +10 -2
- package/node_modules/@maka/core/dist/slash-command-catalog.js +1 -0
- package/node_modules/@maka/core/dist/task-submission-readiness.js +2 -1
- package/node_modules/@maka/core/dist/usage-record-schema.js +11 -1
- package/node_modules/@maka/core/dist/workhub-creation-intent.js +896 -0
- package/node_modules/@maka/core/package.json +8 -2
- package/node_modules/@maka/mcp/dist/index.js +1 -0
- package/node_modules/@maka/runtime/dist/agent-run.js +7 -0
- package/node_modules/@maka/runtime/dist/ai-sdk-backend.js +55 -82
- package/node_modules/@maka/runtime/dist/ai-sdk-compaction.js +178 -140
- package/node_modules/@maka/runtime/dist/archive-read-tool.js +26 -5
- package/node_modules/@maka/runtime/dist/builtin-tools.js +27 -2
- package/node_modules/@maka/runtime/dist/context-budget-policy.js +0 -12
- package/node_modules/@maka/runtime/dist/conversation-copy.js +66 -43
- package/node_modules/@maka/runtime/dist/durable-tool-result-projection.js +31 -0
- package/node_modules/@maka/runtime/dist/history-compact-error.js +10 -2
- package/node_modules/@maka/runtime/dist/history-compact-input-fit.js +7 -1
- package/node_modules/@maka/runtime/dist/history-compaction.js +13 -22
- package/node_modules/@maka/runtime/dist/image-file.js +5 -20
- package/node_modules/@maka/runtime/dist/local-web-fetch.js +2 -43
- package/node_modules/@maka/runtime/dist/mcp-tools.js +28 -0
- package/node_modules/@maka/runtime/dist/model-fetcher.js +15 -8
- package/node_modules/@maka/runtime/dist/model-history.js +59 -17
- package/node_modules/@maka/runtime/dist/model-runtime.js +2 -2
- package/node_modules/@maka/runtime/dist/plugin-composition-loader.js +173 -20
- package/node_modules/@maka/runtime/dist/plugin-runtime.js +219 -0
- package/node_modules/@maka/runtime/dist/provider-image-overflow-recovery.js +12 -31
- package/node_modules/@maka/runtime/dist/quiescent-session-snapshot.js +78 -0
- package/node_modules/@maka/runtime/dist/runtime-event-backfill.js +6 -0
- package/node_modules/@maka/runtime/dist/runtime-event-read-model.js +14 -2
- package/node_modules/@maka/runtime/dist/session-event-runtime-mapper.js +11 -10
- package/node_modules/@maka/runtime/dist/shell-tools.js +77 -1
- package/node_modules/@maka/runtime/dist/telemetry/model-pricing.generated.js +93 -83
- package/node_modules/@maka/runtime/dist/test-connection.js +6 -6
- package/node_modules/@maka/runtime/dist/tool-availability.js +74 -5
- package/node_modules/@maka/runtime/dist/tool-result-archive-resource.js +333 -52
- package/node_modules/@maka/runtime/dist/tool-result-archive-transition.js +34 -3
- package/node_modules/@maka/runtime/dist/tool-runtime.js +62 -6
- package/node_modules/@maka/runtime/dist/workers/filesystem-worker.js +39 -16
- package/node_modules/@maka/runtime/package.json +1 -0
- package/node_modules/@maka/runtime-host/dist/adapter/session-projector.js +10 -3
- package/node_modules/@maka/runtime-host/dist/client/catalog-reader.js +59 -18
- package/node_modules/@maka/runtime-host/dist/client/client-capability-channel.js +3 -2
- package/node_modules/@maka/runtime-host/dist/client/connection.js +72 -31
- package/node_modules/@maka/runtime-host/dist/client/host-profile.js +49 -4
- package/node_modules/@maka/runtime-host/dist/client/index.js +3 -2
- package/node_modules/@maka/runtime-host/dist/client/oauth-presentation.js +1 -1
- package/node_modules/@maka/runtime-host/dist/client/owner-connection-code.js +32 -1
- package/node_modules/@maka/runtime-host/dist/client/peer-client.js +26 -4
- package/node_modules/@maka/runtime-host/dist/client/reconnecting-connection.js +8 -0
- package/node_modules/@maka/runtime-host/dist/operator/access-management-frame.js +10 -1
- package/node_modules/@maka/runtime-host/dist/operator/index.js +2 -1
- package/node_modules/@maka/runtime-host/dist/operator/managed-deployment.js +2 -0
- package/node_modules/@maka/runtime-host/dist/operator/peer-management-frame.js +2 -0
- package/node_modules/@maka/runtime-host/dist/operator/service-management-frame.js +2 -0
- package/node_modules/@maka/runtime-host/dist/peer-mesh/node.js +56 -12
- package/node_modules/@maka/runtime-host/dist/peer-mesh/owner.js +4 -0
- package/node_modules/@maka/runtime-host/dist/protocol/client-capability.js +22 -1
- package/node_modules/@maka/runtime-host/dist/protocol/configuration.js +55 -9
- package/node_modules/@maka/{storage/dist/task-ledger-store-internal.js → runtime-host/dist/protocol/connection-catalog-change.js} +7 -13
- package/node_modules/@maka/runtime-host/dist/protocol/host-status.js +37 -0
- package/node_modules/@maka/runtime-host/dist/protocol/index.js +49 -1
- package/node_modules/@maka/runtime-host/dist/protocol/network-proxy.js +1 -7
- package/node_modules/@maka/runtime-host/dist/protocol/operations.js +5 -1
- package/node_modules/@maka/runtime-host/dist/protocol/plugin-platform.js +512 -0
- package/node_modules/@maka/runtime-host/dist/protocol/runtime-policy.js +72 -61
- package/node_modules/@maka/runtime-host/dist/protocol/session-catalog.js +1 -1
- package/node_modules/@maka/runtime-host/dist/protocol/session-collaboration.js +4 -2
- package/node_modules/@maka/runtime-host/dist/protocol/turn.js +5 -12
- package/node_modules/@maka/runtime-host/dist/protocol/workhub-coordination.js +92 -4
- package/node_modules/@maka/runtime-host/dist/server/access-authority.js +17 -14
- package/node_modules/@maka/runtime-host/dist/server/access-credential-metadata.js +4 -2
- package/node_modules/@maka/runtime-host/dist/server/access-credential-store.js +119 -47
- package/node_modules/@maka/runtime-host/dist/server/agent-graph-execution-coordinator.js +1 -2
- package/node_modules/@maka/runtime-host/dist/server/bootstrap-runtime-policy.js +10 -4
- package/node_modules/@maka/runtime-host/dist/server/canonical-turn-snapshot.js +0 -9
- package/node_modules/@maka/runtime-host/dist/server/client-capability-coordinator.js +192 -18
- package/node_modules/@maka/runtime-host/dist/server/client-capability-invocation-broker.js +122 -48
- package/node_modules/@maka/runtime-host/dist/server/client-capability-provider-id.js +31 -0
- package/node_modules/@maka/runtime-host/dist/server/configuration-coordinator.js +20 -1
- package/node_modules/@maka/runtime-host/dist/server/connection-effect-coordinator.js +5 -5
- package/node_modules/@maka/runtime-host/dist/server/connection-session.js +1 -0
- package/node_modules/@maka/runtime-host/dist/server/execution-composition.js +163 -28
- package/node_modules/@maka/runtime-host/dist/server/execution-model-authority.js +2 -2
- package/node_modules/@maka/runtime-host/dist/server/execution-service.js +4 -1
- package/node_modules/@maka/runtime-host/dist/server/extension-bundle.js +249 -0
- package/node_modules/@maka/runtime-host/dist/server/extension-package-manifest.js +262 -0
- package/node_modules/@maka/runtime-host/dist/server/host-change-feed.js +11 -0
- package/node_modules/@maka/runtime-host/dist/server/host-kernel.js +15 -0
- package/node_modules/@maka/runtime-host/dist/server/index.js +5 -0
- package/node_modules/@maka/runtime-host/dist/server/interaction-coordinator.js +181 -13
- package/node_modules/@maka/runtime-host/dist/server/interaction-projection.js +6 -0
- package/node_modules/@maka/runtime-host/dist/server/listener-set.js +8 -4
- package/node_modules/@maka/runtime-host/dist/server/message-coordinator.js +88 -22
- package/node_modules/@maka/runtime-host/dist/server/model-metadata-refresh.js +96 -0
- package/node_modules/@maka/runtime-host/dist/server/network-proxy-coordinator.js +0 -1
- package/node_modules/@maka/runtime-host/dist/server/operation-dispatcher.js +43 -118
- package/node_modules/@maka/runtime-host/dist/server/peer-listener.js +3 -0
- package/node_modules/@maka/runtime-host/dist/server/plugin-composition-patch.js +58 -0
- package/node_modules/@maka/runtime-host/dist/server/plugin-composition-store.js +141 -0
- package/node_modules/@maka/runtime-host/dist/server/plugin-package-loader.js +130 -0
- package/node_modules/@maka/runtime-host/dist/server/plugin-package-store.js +528 -0
- package/node_modules/@maka/runtime-host/dist/server/plugin-platform-coordinator.js +249 -0
- package/node_modules/@maka/runtime-host/dist/server/plugin-platform.js +1130 -0
- package/node_modules/@maka/runtime-host/dist/server/root-admission-owner.js +4 -0
- package/node_modules/@maka/runtime-host/dist/server/root-turn-coordinator.js +24 -5
- package/node_modules/@maka/runtime-host/dist/server/runtime-policy-coordinator.js +57 -5
- package/node_modules/@maka/runtime-host/dist/server/session-catalog-coordinator.js +2 -1
- package/node_modules/@maka/runtime-host/dist/server/session-retirement-coordinator.js +3 -3
- package/node_modules/@maka/runtime-host/dist/server/session-revision-coordinator.js +35 -3
- package/node_modules/@maka/runtime-host/dist/server/session-sidecar-purge.js +16 -0
- package/node_modules/@maka/runtime-host/dist/server/session-transcript-pager.js +10 -2
- package/node_modules/@maka/runtime-host/dist/server/web-fetch-tool.js +1 -1
- package/node_modules/@maka/runtime-host/dist/server/workhub-coordination-action-gate.js +276 -3
- package/node_modules/@maka/runtime-host/dist/server/workhub-coordination-coordinator.js +101 -1
- package/node_modules/@maka/runtime-host/dist/transport/peer-native.js +1 -0
- package/node_modules/@maka/runtime-host/dist/webrtc-stun-policy.js +114 -0
- package/node_modules/@maka/runtime-host/package.json +2 -0
- package/node_modules/@maka/storage/dist/agent-run-store.js +4 -0
- package/node_modules/@maka/storage/dist/artifact-store.js +7 -23
- package/node_modules/@maka/storage/dist/conversation-operational-state.js +3 -0
- package/node_modules/@maka/storage/dist/execution-stores.js +3 -0
- package/node_modules/@maka/storage/dist/interaction-store-public.js +1 -1
- package/node_modules/@maka/storage/dist/interaction-store.js +173 -0
- package/node_modules/@maka/storage/dist/production-session-snapshot.js +761 -0
- package/node_modules/@maka/storage/dist/quiescent-session-snapshot.js +1 -1
- package/node_modules/@maka/storage/dist/runtime-policy/connection-catalog-document.js +19 -22
- package/node_modules/@maka/storage/dist/runtime-policy/coordinator.js +205 -42
- package/node_modules/@maka/storage/dist/runtime-policy/onboarding-transaction.js +2 -2
- package/node_modules/@maka/storage/dist/runtime-policy-stores.js +5 -2
- package/node_modules/@maka/storage/dist/session-message-projection.js +1 -1
- package/node_modules/@maka/storage/dist/session-store.js +32 -6
- package/node_modules/@maka/storage/dist/session-todo-store.js +6 -68
- package/node_modules/@maka/storage/dist/settings-store.js +16 -25
- package/node_modules/@maka/storage/dist/sqlite-core-execution-schema.js +19 -0
- package/node_modules/@maka/storage/dist/sqlite-session-metadata-schema.js +10 -1
- package/node_modules/@maka/storage/dist/sqlite-session-metadata-store.js +73 -3
- package/node_modules/@maka/storage/dist/sqlite-workflow-schema.js +2 -10
- package/node_modules/@maka/storage/package.json +2 -0
- package/node_modules/fast-uri/index.js +215 -47
- package/node_modules/fast-uri/lib/schemes.js +9 -4
- package/node_modules/fast-uri/lib/utils.js +396 -92
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/qs/.github/THREAT_MODEL.md +3 -3
- package/node_modules/qs/CHANGELOG.md +15 -0
- package/node_modules/qs/README.md +19 -1
- package/node_modules/qs/dist/qs.js +21 -21
- package/node_modules/qs/eslint.config.mjs +1 -1
- package/node_modules/qs/lib/parse.js +3 -4
- package/node_modules/qs/lib/stringify.js +23 -8
- package/node_modules/qs/lib/utils.js +10 -3
- package/node_modules/qs/package.json +4 -4
- package/package.json +1 -1
- package/node_modules/@maka/core/dist/task-ledger.js +0 -669
- package/node_modules/@maka/storage/dist/task-ledger-authority.js +0 -121
- package/node_modules/@maka/storage/dist/task-ledger-store.js +0 -663
package/LICENSE
CHANGED
|
@@ -235,8 +235,8 @@ Copyright (c) 2026 Meta Platforms, Inc.
|
|
|
235
235
|
License: MIT
|
|
236
236
|
|
|
237
237
|
Maka includes an ejected adaptation of Astryx ChatReasoning v0.1.9 and generated
|
|
238
|
-
theme artifacts based on Astryx theme-neutral v0.5.
|
|
239
|
-
`patches/@astryxdesign+core+0.5.
|
|
238
|
+
theme artifacts based on Astryx theme-neutral v0.5.2. Maka also redistributes
|
|
239
|
+
`patches/@astryxdesign+core+0.5.2.patch`, which modifies the MIT-licensed Astryx
|
|
240
240
|
core package. The following MIT License applies to that material:
|
|
241
241
|
|
|
242
242
|
MIT License
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
crate Apache-2.0 BSD-2-Clause BSD-3-Clause ISC MIT Unicode-3.0 Unlicense Zlib
|
|
2
|
+
aead@0.5.2 X X
|
|
3
|
+
aes@0.8.4 X X
|
|
2
4
|
anyhow@1.0.104 X X
|
|
3
5
|
arrayref@0.3.9 X
|
|
6
|
+
asn1-rs@0.6.2 X X
|
|
4
7
|
asn1-rs@0.7.2 X X
|
|
8
|
+
asn1-rs-derive@0.5.1 X X
|
|
5
9
|
asn1-rs-derive@0.6.0 X X
|
|
6
10
|
asn1-rs-impl@0.2.0 X X
|
|
7
11
|
asn1_der@0.7.7 X X
|
|
12
|
+
async-broadcast@0.7.2 X X
|
|
13
|
+
async-channel@2.5.0 X X
|
|
8
14
|
async-trait@0.1.92 X X
|
|
9
15
|
asynchronous-codec@0.7.0 X
|
|
10
16
|
autocfg@1.5.1 X X
|
|
@@ -12,21 +18,31 @@ base-x@0.2.11 X
|
|
|
12
18
|
base256emoji@1.0.2 X
|
|
13
19
|
base45@3.2.0 X
|
|
14
20
|
base64@0.22.1 X X
|
|
21
|
+
base64@0.23.1 X X
|
|
22
|
+
bitflags@1.3.2 X X
|
|
15
23
|
bitflags@2.13.1 X X
|
|
16
24
|
block-buffer@0.10.4 X X
|
|
17
25
|
bs58@0.5.1 X X
|
|
26
|
+
bytecheck@0.8.3 X
|
|
27
|
+
bytecheck_derive@0.8.3 X
|
|
18
28
|
byteorder@1.5.0 X X
|
|
19
29
|
bytes@1.12.1 X
|
|
20
30
|
cc@1.4.4 X X
|
|
31
|
+
ccm@0.5.0 X X
|
|
21
32
|
cfg-if@1.0.4 X X
|
|
22
33
|
cfg_aliases@0.2.2 X
|
|
23
34
|
chacha20@0.10.1 X X
|
|
35
|
+
cipher@0.4.4 X X
|
|
36
|
+
concurrent-queue@2.5.0 X X
|
|
24
37
|
const-str@0.4.3 X
|
|
25
38
|
convert_case@0.11.0 X
|
|
26
39
|
core-foundation@0.9.4 X X
|
|
27
40
|
core-foundation-sys@0.8.7 X X
|
|
28
41
|
cpufeatures@0.2.17 X X
|
|
29
42
|
cpufeatures@0.3.0 X X
|
|
43
|
+
crc@3.4.0 X X
|
|
44
|
+
crc-catalog@2.5.0 X X
|
|
45
|
+
crc32c@0.6.8 X X
|
|
30
46
|
critical-section@1.2.0 X X
|
|
31
47
|
crossbeam-channel@0.5.16 X X
|
|
32
48
|
crossbeam-epoch@0.9.20 X X
|
|
@@ -34,12 +50,14 @@ crossbeam-utils@0.8.22 X X
|
|
|
34
50
|
crunchy@0.2.4 X
|
|
35
51
|
crypto-common@0.1.7 X X
|
|
36
52
|
ctor@1.0.13 X X
|
|
53
|
+
ctr@0.9.2 X X
|
|
37
54
|
curve25519-dalek@4.1.3 X
|
|
38
55
|
curve25519-dalek-derive@0.1.1 X X
|
|
39
56
|
data-encoding@2.11.1 X
|
|
40
57
|
data-encoding-macro@0.1.21 X
|
|
41
58
|
data-encoding-macro-internal@0.1.19 X
|
|
42
59
|
der-parser@10.0.0 X X
|
|
60
|
+
der-parser@9.0.0 X X
|
|
43
61
|
deranged@0.5.8 X X
|
|
44
62
|
digest@0.10.7 X X
|
|
45
63
|
displaydoc@0.2.7 X X
|
|
@@ -48,6 +66,8 @@ ed25519-dalek@2.2.0 X
|
|
|
48
66
|
either@1.18.0 X X
|
|
49
67
|
enum-as-inner@0.6.1 X X
|
|
50
68
|
equivalent@1.0.2 X X
|
|
69
|
+
event-listener@5.4.2 X X
|
|
70
|
+
event-listener-strategy@0.5.4 X X
|
|
51
71
|
fastbloom@0.17.0 X X
|
|
52
72
|
find-msvc-tools@0.1.11 X X
|
|
53
73
|
fnv@1.0.7 X X
|
|
@@ -71,6 +91,7 @@ getrandom@0.2.17 X X
|
|
|
71
91
|
getrandom@0.3.4 X X
|
|
72
92
|
getrandom@0.4.3 X X
|
|
73
93
|
hashbrown@0.15.5 X X
|
|
94
|
+
hashbrown@0.17.1 X X
|
|
74
95
|
hashlink@0.10.0 X X
|
|
75
96
|
heck@0.5.0 X X
|
|
76
97
|
hex@0.4.3 X X
|
|
@@ -89,9 +110,11 @@ idna@1.1.0 X X
|
|
|
89
110
|
idna_adapter@1.2.2 X X
|
|
90
111
|
if-addrs@0.15.0 X X
|
|
91
112
|
if-watch@3.2.2 X X
|
|
113
|
+
inout@0.1.4 X X
|
|
92
114
|
ipconfig@0.3.4 X X
|
|
93
115
|
ipnet@2.12.1 X X
|
|
94
116
|
itertools@0.14.0 X X
|
|
117
|
+
itoa@1.0.18 X X
|
|
95
118
|
lazy_static@1.5.0 X X
|
|
96
119
|
libc@0.2.189 X X
|
|
97
120
|
libloading@0.9.0 X
|
|
@@ -113,6 +136,7 @@ libp2p-swarm@0.47.1 X
|
|
|
113
136
|
libp2p-swarm-derive@0.35.1 X
|
|
114
137
|
libp2p-tcp@0.44.1 X
|
|
115
138
|
libp2p-tls@0.6.2 X
|
|
139
|
+
libp2p-webrtc-utils@0.4.0 X
|
|
116
140
|
libp2p-yamux@0.47.0 X
|
|
117
141
|
litemap@0.8.3 X
|
|
118
142
|
lock_api@0.4.14 X X
|
|
@@ -120,7 +144,9 @@ log@0.4.34 X X
|
|
|
120
144
|
lru-slab@0.1.2 X X X
|
|
121
145
|
maka-runtime-host-peer@0.0.0 X
|
|
122
146
|
match-lookup@0.1.3 X
|
|
147
|
+
md-5@0.10.6 X X
|
|
123
148
|
memchr@2.8.3 X X
|
|
149
|
+
memoffset@0.9.1 X
|
|
124
150
|
minimal-lexical@0.2.1 X X
|
|
125
151
|
mio@1.2.2 X
|
|
126
152
|
moka@0.12.16 X X
|
|
@@ -128,6 +154,8 @@ multiaddr@0.18.2 X
|
|
|
128
154
|
multibase@0.9.3 X
|
|
129
155
|
multihash@0.19.5 X
|
|
130
156
|
multistream-select@0.13.0 X
|
|
157
|
+
munge@0.4.7 X
|
|
158
|
+
munge_macro@0.4.7 X
|
|
131
159
|
napi@3.12.2 X
|
|
132
160
|
napi-build@2.4.1 X
|
|
133
161
|
napi-derive@3.6.3 X
|
|
@@ -138,18 +166,22 @@ netlink-packet-route@0.28.0 X
|
|
|
138
166
|
netlink-proto@0.12.2 X
|
|
139
167
|
netlink-sys@0.8.8 X
|
|
140
168
|
nix@0.30.1 X
|
|
169
|
+
nix@0.31.3 X
|
|
141
170
|
nohash-hasher@0.2.0 X X
|
|
142
171
|
nom@7.1.3 X
|
|
143
172
|
num-bigint@0.4.8 X X
|
|
144
173
|
num-conv@0.2.2 X X
|
|
145
174
|
num-integer@0.1.47 X X
|
|
146
175
|
num-traits@0.2.19 X X
|
|
176
|
+
oid-registry@0.7.1 X X
|
|
147
177
|
oid-registry@0.8.1 X X
|
|
148
178
|
once_cell@1.21.4 X X
|
|
179
|
+
parking@2.2.1 X X
|
|
149
180
|
parking_lot@0.12.5 X X
|
|
150
181
|
parking_lot_core@0.9.12 X X
|
|
151
182
|
paste@1.0.15 X X
|
|
152
183
|
pem@3.0.6 X
|
|
184
|
+
pem@4.0.0 X
|
|
153
185
|
percent-encoding@2.3.2 X X
|
|
154
186
|
pin-project@1.1.13 X X
|
|
155
187
|
pin-project-internal@1.1.13 X X
|
|
@@ -161,12 +193,16 @@ ppv-lite86@0.2.21 X X
|
|
|
161
193
|
proc-macro2@1.0.107 X X
|
|
162
194
|
prost@0.14.4 X
|
|
163
195
|
prost-derive@0.14.4 X
|
|
196
|
+
ptr_meta@0.3.2 X
|
|
197
|
+
ptr_meta_derive@0.3.2 X
|
|
164
198
|
quick-protobuf@0.8.1 X
|
|
165
199
|
quick-protobuf-codec@0.3.1 X
|
|
166
200
|
quinn@0.11.11 X X
|
|
167
201
|
quinn-proto@0.11.17 X X
|
|
168
202
|
quinn-udp@0.5.15 X X
|
|
203
|
+
quinn-udp@0.6.1 X X
|
|
169
204
|
quote@1.0.47 X X
|
|
205
|
+
rancor@0.1.3 X
|
|
170
206
|
rand@0.10.2 X X
|
|
171
207
|
rand@0.8.8 X X
|
|
172
208
|
rand@0.9.5 X X
|
|
@@ -177,8 +213,28 @@ rand_core@0.6.4 X X
|
|
|
177
213
|
rand_core@0.9.5 X X
|
|
178
214
|
rand_pcg@0.10.2 X X
|
|
179
215
|
rcgen@0.13.2 X X
|
|
216
|
+
rcgen@0.14.10 X X
|
|
217
|
+
rend@0.5.4 X
|
|
180
218
|
resolv-conf@0.7.6 X X
|
|
181
219
|
ring@0.17.14 X X
|
|
220
|
+
rkyv@0.8.18 X
|
|
221
|
+
rkyv_derive@0.8.18 X
|
|
222
|
+
rtc@0.21.0-rc.1 X X
|
|
223
|
+
rtc-crypto@0.21.0-rc.1 X X
|
|
224
|
+
rtc-datachannel@0.21.0-rc.1 X X
|
|
225
|
+
rtc-dtls@0.21.0-rc.1 X X
|
|
226
|
+
rtc-ice@0.21.0-rc.1 X X
|
|
227
|
+
rtc-interceptor@0.21.0-rc.1 X X
|
|
228
|
+
rtc-mdns@0.21.0-rc.1 X X
|
|
229
|
+
rtc-media@0.21.0-rc.1 X X
|
|
230
|
+
rtc-rtcp@0.21.0-rc.1 X X
|
|
231
|
+
rtc-rtp@0.21.0-rc.1 X X
|
|
232
|
+
rtc-sctp@0.21.0-rc.1 X X
|
|
233
|
+
rtc-sdp@0.21.0-rc.1 X X
|
|
234
|
+
rtc-shared@0.21.0-rc.1 X X
|
|
235
|
+
rtc-srtp@0.21.0-rc.1 X X
|
|
236
|
+
rtc-stun@0.21.0-rc.1 X X
|
|
237
|
+
rtc-turn@0.21.0-rc.1 X X
|
|
182
238
|
rtnetlink@0.20.0 X
|
|
183
239
|
rustc-hash@2.1.3 X X
|
|
184
240
|
rustc_version@0.4.1 X X
|
|
@@ -187,13 +243,18 @@ rustls@0.23.43 X X X
|
|
|
187
243
|
rustls-pki-types@1.15.1 X X
|
|
188
244
|
rustls-webpki@0.103.15 X
|
|
189
245
|
rw-stream-sink@0.4.0 X
|
|
246
|
+
sansio@1.0.1 X X
|
|
190
247
|
scopeguard@1.2.0 X X
|
|
191
248
|
semver@1.0.28 X X
|
|
192
249
|
serde@1.0.229 X X
|
|
193
250
|
serde_core@1.0.229 X X
|
|
251
|
+
serde_derive@1.0.229 X X
|
|
252
|
+
serde_json@1.0.151 X X
|
|
253
|
+
sha1@0.10.7 X X
|
|
194
254
|
sha2@0.10.9 X X
|
|
195
255
|
shlex@2.0.1 X X
|
|
196
256
|
signature@2.2.0 X X
|
|
257
|
+
simdutf8@0.1.5 X X
|
|
197
258
|
siphasher@1.0.3 X X
|
|
198
259
|
slab@0.4.12 X
|
|
199
260
|
smallvec@1.15.2 X X
|
|
@@ -202,6 +263,7 @@ socket2@0.5.10 X X
|
|
|
202
263
|
socket2@0.6.5 X X
|
|
203
264
|
stable_deref_trait@1.2.1 X X
|
|
204
265
|
static_assertions@1.1.0 X X
|
|
266
|
+
substring@1.4.5 X X
|
|
205
267
|
subtle@2.6.1 X
|
|
206
268
|
syn@2.0.119 X X
|
|
207
269
|
syn@3.0.4 X X
|
|
@@ -217,15 +279,18 @@ time@0.3.55 X X
|
|
|
217
279
|
time-core@0.1.9 X X
|
|
218
280
|
time-macros@0.2.32 X X
|
|
219
281
|
tinystr@0.8.4 X
|
|
282
|
+
tinytemplate@1.2.1 X X
|
|
220
283
|
tinyvec@1.12.0 X X X
|
|
221
284
|
tinyvec_macros@0.1.1 X X X
|
|
222
285
|
tokio@1.53.1 X
|
|
223
286
|
tokio-macros@2.7.2 X
|
|
287
|
+
tokio-util@0.7.19 X
|
|
224
288
|
tracing@0.1.44 X
|
|
225
289
|
tracing-attributes@0.1.31 X
|
|
226
290
|
tracing-core@0.1.36 X
|
|
227
291
|
typenum@1.20.1 X X
|
|
228
292
|
uint@0.10.1 X X
|
|
293
|
+
unicase@2.9.0 X X
|
|
229
294
|
unicode-ident@1.0.24 X X X
|
|
230
295
|
unicode-segmentation@1.13.3 X X
|
|
231
296
|
unsigned-varint@0.7.2 X
|
|
@@ -236,7 +301,9 @@ utf8_iter@1.0.4 X X
|
|
|
236
301
|
uuid@1.25.0 X X
|
|
237
302
|
version_check@0.9.5 X X
|
|
238
303
|
web-time@1.1.0 X X
|
|
304
|
+
webrtc@0.21.0-rc.1 X X
|
|
239
305
|
widestring@1.2.1 X X
|
|
306
|
+
winapi@0.3.9 X X
|
|
240
307
|
windows@0.62.2 X X
|
|
241
308
|
windows-collections@0.3.2 X X
|
|
242
309
|
windows-core@0.62.2 X X
|
|
@@ -256,10 +323,12 @@ windows_x86_64_gnu@0.52.6 X X
|
|
|
256
323
|
windows_x86_64_msvc@0.52.6 X X
|
|
257
324
|
writeable@0.6.4 X
|
|
258
325
|
x25519-dalek@2.0.1 X
|
|
326
|
+
x509-parser@0.16.0 X X
|
|
259
327
|
x509-parser@0.17.0 X X
|
|
260
328
|
yamux@0.12.1 X X
|
|
261
329
|
yamux@0.13.10 X X
|
|
262
330
|
yasna@0.5.2 X X
|
|
331
|
+
yasna@0.6.0 X X
|
|
263
332
|
yoke@0.8.3 X
|
|
264
333
|
yoke-derive@0.8.2 X
|
|
265
334
|
zerocopy@0.8.56 X X X
|
|
@@ -270,3 +339,4 @@ zeroize_derive@1.5.0 X X
|
|
|
270
339
|
zerotrie@0.2.5 X
|
|
271
340
|
zerovec@0.11.8 X
|
|
272
341
|
zerovec-derive@0.11.6 X
|
|
342
|
+
zmij@1.0.23 X
|