maka-agent 0.2.0-dev.10.20260831 → 0.2.0-dev.12.20260901
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 +49 -2
- package/RUNTIME_HOST_PEER_DEPENDENCIES.rust.tsv +70 -0
- package/RUNTIME_HOST_PEER_THIRD_PARTY_NOTICES.txt +1839 -140
- package/dist/cli-core.js +25 -1
- 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 +115 -122
- package/dist/pi-tui-pickers.js +11 -5
- package/dist/pi-tui-runner.js +133 -102
- package/dist/runtime-host-cli-context.js +4 -0
- package/dist/runtime-host-cli.js +150 -4
- 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 +5 -1
- 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 +34 -6
- package/dist/runtime-host-update-command.js +13 -5
- package/dist/runtime-host-update-discovery.js +1 -0
- package/dist/tui-clipboard.js +86 -0
- package/dist/tui-copy-catalog.js +256 -0
- package/dist/tui-copy-command.js +103 -0
- package/dist/tui-mcp-control.js +46 -4
- package/dist/tui-mcp-remote-publication.js +395 -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/agent-run.js +5 -0
- package/node_modules/@maka/core/dist/attachments.js +80 -1
- package/node_modules/@maka/core/dist/bounded-response.js +71 -0
- package/node_modules/@maka/core/dist/chat-model-choice.js +8 -31
- package/node_modules/@maka/core/dist/client-capability-grant.js +149 -0
- 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 -1
- package/node_modules/@maka/core/dist/execution-inspect.js +3 -1
- 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/model-call-attempt.js +66 -0
- package/node_modules/@maka/core/dist/model-catalog.js +238 -313
- package/node_modules/@maka/core/dist/model-facts.js +280 -0
- 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-projection-transition.js +145 -0
- 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-boundary.js +2 -2
- package/node_modules/@maka/core/dist/runtime-event.js +5 -1
- package/node_modules/@maka/core/dist/runtime-policy/connection-catalog-codec.js +82 -5
- package/node_modules/@maka/core/dist/runtime-policy/model-catalog-entry-codec.js +75 -0
- package/node_modules/@maka/core/dist/runtime-policy.js +2 -1
- 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-todo.js +101 -0
- package/node_modules/@maka/core/dist/session.js +119 -5
- 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/tool-activity-args.js +4 -0
- package/node_modules/@maka/core/dist/tool-quiet-preview.js +5 -5
- package/node_modules/@maka/core/dist/tool-result-record-schema.js +2 -1
- package/node_modules/@maka/core/dist/workhub-creation-intent.js +896 -0
- package/node_modules/@maka/core/package.json +9 -1
- package/node_modules/@maka/runtime/dist/active-tool-result-prune.js +45 -131
- package/node_modules/@maka/runtime/dist/agent-run.js +58 -44
- package/node_modules/@maka/runtime/dist/ai-sdk-backend.js +146 -201
- package/node_modules/@maka/runtime/dist/ai-sdk-compaction.js +235 -69
- package/node_modules/@maka/runtime/dist/context-budget-helpers.js +4 -41
- package/node_modules/@maka/runtime/dist/context-budget-policy.js +8 -1
- package/node_modules/@maka/runtime/dist/context-budget.js +9 -81
- package/node_modules/@maka/runtime/dist/context-diagnostics.js +63 -27
- package/node_modules/@maka/runtime/dist/continuation-replay.js +19 -11
- package/node_modules/@maka/runtime/dist/conversation-copy.js +179 -16
- package/node_modules/@maka/runtime/dist/deep-research-tools.js +2 -3
- package/node_modules/@maka/runtime/dist/durable-tool-result-projection.js +21 -0
- package/node_modules/@maka/runtime/dist/execution-inspect.js +13 -3
- package/node_modules/@maka/runtime/dist/history-compact-checkpoint.js +58 -7
- package/node_modules/@maka/runtime/dist/history-compact-ledger.js +9 -1
- package/node_modules/@maka/runtime/dist/history-compact-summarizer.js +2 -2
- package/node_modules/@maka/runtime/dist/history-compact-summary-validation.js +2 -1
- package/node_modules/@maka/runtime/dist/history-compaction.js +2 -1
- package/node_modules/@maka/runtime/dist/image-file.js +5 -20
- package/node_modules/@maka/runtime/dist/latest-context-snapshot.js +114 -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-adapter.js +47 -15
- package/node_modules/@maka/runtime/dist/model-factory.js +7 -1
- package/node_modules/@maka/runtime/dist/model-fetcher.js +15 -8
- package/node_modules/@maka/runtime/dist/model-history.js +125 -3
- package/node_modules/@maka/runtime/dist/model-projection-transition-ledger.js +207 -0
- package/node_modules/@maka/runtime/dist/model-runtime.js +7 -4
- package/node_modules/@maka/runtime/dist/openai-codex-history-compactor.js +12 -14
- 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/prompt-composition.js +33 -21
- package/node_modules/@maka/runtime/dist/provider-request-telemetry.js +35 -74
- package/node_modules/@maka/runtime/dist/quiescent-session-snapshot.js +78 -0
- package/node_modules/@maka/runtime/dist/request-shape.js +256 -343
- package/node_modules/@maka/runtime/dist/run-trace.js +2 -24
- package/node_modules/@maka/runtime/dist/runtime-continuation-admission.js +1 -1
- package/node_modules/@maka/runtime/dist/runtime-event-backfill.js +3 -0
- package/node_modules/@maka/runtime/dist/runtime-event-read-model.js +1 -0
- package/node_modules/@maka/runtime/dist/runtime-kernel.js +77 -23
- package/node_modules/@maka/runtime/dist/runtime-resume.js +20 -11
- package/node_modules/@maka/runtime/dist/session-event-runtime-mapper.js +8 -4
- package/node_modules/@maka/runtime/dist/session-manager.js +45 -9
- package/node_modules/@maka/runtime/dist/session-recap.js +2 -1
- package/node_modules/@maka/runtime/dist/session-todo-tools.js +67 -0
- package/node_modules/@maka/runtime/dist/subagent-tools.js +2 -77
- package/node_modules/@maka/runtime/dist/system-prompt/main-session-prompt.js +1 -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-result-archive-transition.js +227 -0
- package/node_modules/@maka/runtime/dist/tool-result-archive.js +40 -168
- package/node_modules/@maka/runtime/dist/tool-runtime.js +50 -6
- package/node_modules/@maka/runtime/dist/workers/filesystem-worker.js +39 -16
- package/node_modules/@maka/runtime/package.json +2 -1
- package/node_modules/@maka/runtime-host/dist/adapter/session-projector.js +10 -0
- package/node_modules/@maka/runtime-host/dist/client/catalog-reader.js +19 -5
- package/node_modules/@maka/runtime-host/dist/client/client-capability-channel.js +3 -2
- package/node_modules/@maka/runtime-host/dist/client/connection.js +22 -0
- package/node_modules/@maka/runtime-host/dist/client/host-profile.js +222 -19
- package/node_modules/@maka/runtime-host/dist/client/index.js +2 -1
- package/node_modules/@maka/runtime-host/dist/client/oauth-presentation.js +1 -1
- package/node_modules/@maka/runtime-host/dist/client/peer-client.js +4 -0
- package/node_modules/@maka/runtime-host/dist/client/reconnecting-connection.js +8 -0
- 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/owner.js +1 -0
- package/node_modules/@maka/runtime-host/dist/protocol/client-capability.js +22 -1
- 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/index.js +43 -2
- package/node_modules/@maka/runtime-host/dist/protocol/operations.js +7 -3
- package/node_modules/@maka/runtime-host/dist/protocol/plugin-platform.js +512 -0
- package/node_modules/@maka/runtime-host/dist/protocol/runtime-policy.js +24 -12
- package/node_modules/@maka/runtime-host/dist/protocol/session-catalog.js +1 -1
- package/node_modules/@maka/runtime-host/dist/protocol/session-continuity.js +1 -1
- package/node_modules/@maka/runtime-host/dist/protocol/session-retirement.js +30 -3
- package/node_modules/@maka/runtime-host/dist/protocol/session-todo.js +53 -0
- package/node_modules/@maka/runtime-host/dist/protocol/turn.js +4 -1
- package/node_modules/@maka/runtime-host/dist/protocol/workhub-coordination.js +92 -4
- package/node_modules/@maka/runtime-host/dist/server/access-authority.js +15 -13
- 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/bootstrap-runtime-policy.js +10 -4
- package/node_modules/@maka/runtime-host/dist/server/child-agent-composition.js +1 -1
- 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/connection-effect-coordinator.js +6 -5
- package/node_modules/@maka/runtime-host/dist/server/connection-session.js +1 -0
- package/node_modules/@maka/runtime-host/dist/server/deep-research-coordinator.js +1 -1
- package/node_modules/@maka/runtime-host/dist/server/execution-composition.js +163 -66
- package/node_modules/@maka/runtime-host/dist/server/execution-model-authority.js +27 -9
- package/node_modules/@maka/runtime-host/dist/server/execution-model-composition.js +38 -43
- 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/goal-coordinator.js +0 -23
- package/node_modules/@maka/runtime-host/dist/server/host-change-feed.js +11 -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/interactive-run-composer.js +7 -9
- 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/operation-dispatcher.js +43 -118
- 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 +31 -2
- 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 +58 -9
- package/node_modules/@maka/runtime-host/dist/server/session-revision-coordinator.js +30 -13
- package/node_modules/@maka/runtime-host/dist/server/session-sidecar-purge.js +1 -1
- package/node_modules/@maka/runtime-host/dist/server/session-todo-coordinator.js +77 -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 +80 -15
- package/node_modules/@maka/storage/dist/artifact-attachments.js +29 -6
- package/node_modules/@maka/storage/dist/artifact-store.js +7 -23
- package/node_modules/@maka/storage/dist/artifact-stores.js +13 -2
- package/node_modules/@maka/storage/dist/conversation-operational-state.js +3 -0
- package/node_modules/@maka/storage/dist/credential-store.js +3 -0
- package/node_modules/@maka/storage/dist/execution-stores.js +4 -0
- package/node_modules/@maka/storage/dist/file-lifetime-owner.js +30 -2
- 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/model-facts-store.js +79 -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 +26 -26
- package/node_modules/@maka/storage/dist/runtime-policy/coordinator.js +114 -56
- package/node_modules/@maka/storage/dist/runtime-policy/document-io.js +22 -16
- package/node_modules/@maka/storage/dist/runtime-policy/onboarding-transaction.js +2 -2
- package/node_modules/@maka/storage/dist/runtime-policy-stores.js +1 -1
- 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/{task-ledger-authority.js → session-todo-authority.js} +13 -28
- package/node_modules/@maka/storage/dist/session-todo-store.js +169 -0
- package/node_modules/@maka/storage/dist/sqlite-core-execution-schema.js +19 -0
- package/node_modules/@maka/storage/dist/sqlite-runtime-schema.js +42 -1
- 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 +5 -8
- package/node_modules/@maka/storage/dist/storage-writer-composition.js +3 -3
- package/node_modules/@maka/storage/package.json +3 -1
- package/package.json +1 -1
- package/node_modules/@maka/core/dist/task-ledger.js +0 -669
- package/node_modules/@maka/runtime/dist/task-ledger-tools.js +0 -244
- package/node_modules/@maka/runtime/dist/test-helpers.js +0 -61
- package/node_modules/@maka/runtime-host/dist/protocol/task-ledger.js +0 -321
- package/node_modules/@maka/runtime-host/dist/server/task-ledger-coordinator.js +0 -154
- 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
|
|
@@ -261,6 +261,53 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
261
261
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
262
262
|
SOFTWARE.
|
|
263
263
|
|
|
264
|
+
Sigstore dependency patch
|
|
265
|
+
|
|
266
|
+
Source: https://www.npmjs.com/package/@sigstore/core/v/4.0.1
|
|
267
|
+
Repository: https://github.com/sigstore/sigstore-js/tree/main/packages/core
|
|
268
|
+
Version: 4.0.1
|
|
269
|
+
Dependency patch: patches/@sigstore+core+4.0.1.patch
|
|
270
|
+
Copyright 2023 The Sigstore Authors
|
|
271
|
+
License: Apache-2.0
|
|
272
|
+
|
|
273
|
+
Maka redistributes a source patch that selects the signature digest in
|
|
274
|
+
@sigstore/core. The patch modifies Apache-2.0 source and is covered by the
|
|
275
|
+
Apache License, Version 2.0 reproduced above.
|
|
276
|
+
|
|
277
|
+
TUF metadata models dependency patch
|
|
278
|
+
|
|
279
|
+
Source: https://www.npmjs.com/package/@tufjs/models/v/5.0.0
|
|
280
|
+
Repository: https://github.com/theupdateframework/tuf-js/tree/main/packages/models
|
|
281
|
+
Version: 5.0.0
|
|
282
|
+
Dependency patch: patches/@tufjs+models+5.0.0.patch
|
|
283
|
+
Copyright (c) 2022 GitHub and the TUF Contributors
|
|
284
|
+
License: MIT
|
|
285
|
+
|
|
286
|
+
Maka redistributes a source patch that selects the signature digest in
|
|
287
|
+
@tufjs/models. The following MIT License applies to that material:
|
|
288
|
+
|
|
289
|
+
MIT License
|
|
290
|
+
|
|
291
|
+
Copyright (c) 2022 GitHub and the TUF Contributors
|
|
292
|
+
|
|
293
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
294
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
295
|
+
in the Software without restriction, including without limitation the rights
|
|
296
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
297
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
298
|
+
furnished to do so, subject to the following conditions:
|
|
299
|
+
|
|
300
|
+
The above copyright notice and this permission notice shall be included in
|
|
301
|
+
all copies or substantial portions of the Software.
|
|
302
|
+
|
|
303
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
304
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
305
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
306
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
307
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
308
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
309
|
+
THE SOFTWARE.
|
|
310
|
+
|
|
264
311
|
node-pty dependency patch
|
|
265
312
|
|
|
266
313
|
Source: https://www.npmjs.com/package/node-pty/v/1.2.0-beta.15
|
|
@@ -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
|