maka-agent 0.2.0-dev.3.20260830 → 0.2.0-dev.31.20260913
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 +242 -5
- package/README.md +38 -19
- package/README.zh-CN.md +34 -19
- package/RUNTIME_HOST_PEER_DEPENDENCIES.rust.tsv +70 -0
- package/RUNTIME_HOST_PEER_THIRD_PARTY_NOTICES.txt +1839 -140
- package/THIRD_PARTY_NOTICES.txt +477 -258
- package/dist/acp/maka-acp-agent.js +13 -3
- package/dist/acp/prompt-content.js +225 -0
- package/dist/acp/session-configuration.js +143 -0
- package/dist/acp/session-event-mapper.js +103 -0
- package/dist/acp/session-registry.js +1030 -0
- package/dist/acp/stdio-server.js +29 -1
- package/dist/activation-command.js +1 -2
- package/dist/cli-core.js +99 -102
- package/dist/cli-ui-locale.js +7 -2
- package/dist/eval-bundle-path.js +1 -1
- package/dist/mcp-capability-provider.js +8 -11
- package/dist/onboarding-catalog.js +4 -5
- package/dist/pi-transcript-tools.js +9 -2
- package/dist/pi-transcript.js +86 -31
- package/dist/pi-tui-form-interaction.js +497 -0
- package/dist/pi-tui-layout.js +60 -12
- package/dist/pi-tui-mcp-status.js +122 -124
- package/dist/pi-tui-pickers.js +562 -102
- package/dist/pi-tui-runner.js +722 -170
- package/dist/pi-tui-todo.js +221 -0
- package/dist/pi-tui-transcript-viewer.js +134 -7
- package/dist/run-command-core.js +6 -14
- 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 +300 -80
- package/dist/runtime-host-cli-installation.js +8 -2
- package/dist/runtime-host-cli.js +397 -67
- package/dist/runtime-host-handoff-surface.js +108 -0
- package/dist/runtime-host-help.js +244 -0
- package/dist/runtime-host-installed-update-activator.js +70 -33
- package/dist/runtime-host-installed-update-bootstrap.js +13 -0
- package/dist/runtime-host-installed-update-coordinator.js +44 -96
- package/dist/runtime-host-lifecycle-transaction.js +101 -28
- package/dist/runtime-host-local-handoff.js +215 -41
- package/dist/runtime-host-local-managed-activation.js +84 -0
- package/dist/runtime-host-local-source-retirement.js +119 -0
- package/dist/runtime-host-local-target-activation.js +141 -0
- package/dist/runtime-host-managed-deployment.js +158 -51
- package/dist/runtime-host-managed-lifecycle-manager.js +5 -6
- package/dist/runtime-host-onboarding.js +368 -21
- package/dist/runtime-host-openrc-service.js +469 -0
- package/dist/runtime-host-operator-retirement.js +50 -0
- package/dist/runtime-host-package-deployment.js +36 -2
- package/dist/runtime-host-peer-artifact.js +3 -3
- package/dist/runtime-host-peer-management-command.js +30 -12
- package/dist/runtime-host-peer-mesh-management-command.js +18 -1
- package/dist/runtime-host-plugin-command.js +101 -0
- package/dist/runtime-host-profile-command.js +1 -1
- package/dist/runtime-host-run-command.js +32 -57
- package/dist/runtime-host-service-command.js +3 -3
- package/dist/runtime-host-service-management-command.js +67 -17
- package/dist/runtime-host-service-manager.js +3 -3
- package/dist/runtime-host-session-channel.js +79 -9
- package/dist/runtime-host-session-driver.js +85 -32
- package/dist/runtime-host-session-update.js +62 -0
- package/dist/runtime-host-setup-command.js +103 -65
- package/dist/runtime-host-systemd-service.js +9 -3
- package/dist/runtime-host-task-readiness.js +2 -3
- package/dist/runtime-host-tui-command.js +58 -77
- package/dist/runtime-host-tui-context.js +56 -17
- package/dist/runtime-host-tui-owner.js +226 -0
- package/dist/runtime-host-update-command.js +131 -48
- package/dist/runtime-host-update-discovery.js +1 -0
- package/dist/runtime-host-update-reconciliation.js +7 -7
- package/dist/runtime-host-windows-service.js +166 -0
- package/dist/runtime-host-windows-task-launcher-artifact.js +75 -0
- package/dist/session-export-command.js +72 -0
- package/dist/session-import-command.js +69 -0
- package/dist/tui-autocomplete-layout.js +3 -1
- package/dist/tui-clipboard.js +86 -0
- package/dist/tui-context-refresh.js +103 -0
- package/dist/tui-copy-catalog.js +976 -14
- package/dist/tui-copy-command.js +103 -0
- package/dist/tui-editor-render.js +36 -0
- package/dist/tui-host-owner-copy.js +24 -0
- package/dist/tui-mcp-control.js +87 -10
- 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/native/runtime-host-windows-task-launcher/prebuilds/win32-x64/maka-runtime-host-task-launcher.exe +0 -0
- package/node_modules/@ai-sdk/anthropic/CHANGELOG.md +117 -0
- package/node_modules/@ai-sdk/anthropic/dist/index.js +937 -411
- package/node_modules/@ai-sdk/anthropic/dist/internal/index.js +335 -160
- package/node_modules/@ai-sdk/anthropic/docs/05-anthropic.mdx +132 -43
- package/node_modules/@ai-sdk/anthropic/node_modules/@ai-sdk/provider/CHANGELOG.md +1262 -0
- package/node_modules/@ai-sdk/anthropic/node_modules/@ai-sdk/provider/package.json +63 -0
- package/node_modules/@ai-sdk/anthropic/package.json +6 -6
- package/node_modules/@ai-sdk/cohere/CHANGELOG.md +105 -0
- package/node_modules/@ai-sdk/cohere/dist/index.js +20 -22
- package/node_modules/@ai-sdk/cohere/node_modules/@ai-sdk/provider/CHANGELOG.md +1262 -0
- package/node_modules/@ai-sdk/cohere/node_modules/@ai-sdk/provider/README.md +1 -0
- package/node_modules/@ai-sdk/cohere/node_modules/@ai-sdk/provider/dist/index.js +426 -0
- package/node_modules/@ai-sdk/cohere/node_modules/@ai-sdk/provider/package.json +63 -0
- package/node_modules/@ai-sdk/cohere/package.json +6 -6
- package/node_modules/@ai-sdk/google/CHANGELOG.md +176 -0
- package/node_modules/@ai-sdk/google/dist/index.js +4441 -2801
- package/node_modules/@ai-sdk/google/dist/internal/index.js +640 -177
- package/node_modules/@ai-sdk/google/docs/15-google.mdx +225 -97
- package/node_modules/@ai-sdk/google/node_modules/@ai-sdk/provider/CHANGELOG.md +1262 -0
- package/node_modules/@ai-sdk/google/node_modules/@ai-sdk/provider/README.md +1 -0
- package/node_modules/@ai-sdk/google/node_modules/@ai-sdk/provider/dist/index.js +426 -0
- package/node_modules/@ai-sdk/google/node_modules/@ai-sdk/provider/package.json +63 -0
- package/node_modules/@ai-sdk/google/package.json +6 -6
- package/node_modules/@ai-sdk/open-responses/CHANGELOG.md +81 -0
- package/node_modules/@ai-sdk/open-responses/dist/index.js +570 -22
- package/node_modules/@ai-sdk/open-responses/docs/06-open-responses.mdx +123 -2
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider/CHANGELOG.md +38 -0
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider/package.json +1 -1
- package/node_modules/@ai-sdk/open-responses/package.json +3 -3
- package/node_modules/@ai-sdk/openai/CHANGELOG.md +184 -0
- package/node_modules/@ai-sdk/openai/dist/index.js +2013 -736
- package/node_modules/@ai-sdk/openai/dist/internal/index.js +1377 -478
- package/node_modules/@ai-sdk/openai/docs/03-openai.mdx +208 -52
- package/node_modules/@ai-sdk/openai/node_modules/@ai-sdk/provider/CHANGELOG.md +1262 -0
- package/node_modules/@ai-sdk/openai/node_modules/@ai-sdk/provider/LICENSE +13 -0
- package/node_modules/@ai-sdk/openai/node_modules/@ai-sdk/provider/README.md +1 -0
- package/node_modules/@ai-sdk/openai/node_modules/@ai-sdk/provider/dist/index.js +426 -0
- package/node_modules/@ai-sdk/openai/node_modules/@ai-sdk/provider/package.json +63 -0
- package/node_modules/@ai-sdk/openai/package.json +6 -6
- package/node_modules/@ai-sdk/openai-compatible/CHANGELOG.md +126 -0
- package/node_modules/@ai-sdk/openai-compatible/dist/index.js +105 -20
- package/node_modules/@ai-sdk/openai-compatible/dist/internal/index.js +9 -0
- package/node_modules/@ai-sdk/openai-compatible/docs/index.mdx +78 -0
- package/node_modules/@ai-sdk/openai-compatible/node_modules/@ai-sdk/provider/CHANGELOG.md +1262 -0
- package/node_modules/@ai-sdk/openai-compatible/node_modules/@ai-sdk/provider/README.md +1 -0
- package/node_modules/@ai-sdk/openai-compatible/node_modules/@ai-sdk/provider/dist/index.js +426 -0
- package/node_modules/@ai-sdk/openai-compatible/node_modules/@ai-sdk/provider/package.json +63 -0
- package/node_modules/@ai-sdk/openai-compatible/package.json +6 -6
- package/node_modules/@ai-sdk/provider-utils/CHANGELOG.md +92 -0
- package/node_modules/@ai-sdk/provider-utils/dist/index.js +664 -168
- package/node_modules/@ai-sdk/provider-utils/node_modules/@ai-sdk/provider/CHANGELOG.md +1262 -0
- package/node_modules/@ai-sdk/provider-utils/node_modules/@ai-sdk/provider/LICENSE +13 -0
- package/node_modules/@ai-sdk/provider-utils/node_modules/@ai-sdk/provider/README.md +1 -0
- package/node_modules/@ai-sdk/provider-utils/node_modules/@ai-sdk/provider/dist/index.js +426 -0
- package/node_modules/@ai-sdk/provider-utils/node_modules/@ai-sdk/provider/package.json +63 -0
- package/node_modules/@ai-sdk/provider-utils/package.json +5 -5
- package/node_modules/@earendil-works/pi-tui/README.md +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.js +36 -3
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.js +9 -4
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js +9 -4
- package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.js +24 -4
- package/node_modules/@earendil-works/pi-tui/dist/components/text.js +5 -4
- package/node_modules/@earendil-works/pi-tui/dist/index.js +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/keybindings.js +2 -2
- package/node_modules/@earendil-works/pi-tui/dist/native-modifiers.js +2 -8
- package/node_modules/@earendil-works/pi-tui/dist/native-module-path.js +19 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js +37 -2
- package/node_modules/@earendil-works/pi-tui/dist/terminal.js +4 -10
- package/node_modules/@earendil-works/pi-tui/dist/tui-alt-screen.js +63 -16
- package/node_modules/@earendil-works/pi-tui/dist/tui-main-screen.js +105 -45
- package/node_modules/@earendil-works/pi-tui/package.json +1 -1
- package/node_modules/@maka/core/dist/agent-run.js +25 -336
- package/node_modules/@maka/core/dist/artifacts.js +32 -23
- package/node_modules/@maka/core/dist/attachments.js +100 -1
- package/node_modules/@maka/core/dist/bot-events.js +18 -63
- package/node_modules/@maka/core/dist/bounded-response.js +71 -0
- package/node_modules/@maka/core/dist/canonical-json.js +27 -0
- package/node_modules/@maka/core/dist/canonical-runtime-event.js +3 -1
- package/node_modules/@maka/core/dist/capabilities.js +35 -0
- package/node_modules/@maka/core/dist/chat-model-choice.js +11 -31
- package/node_modules/@maka/core/dist/client-capability-grant.js +149 -0
- package/node_modules/@maka/core/dist/collaboration.js +12 -0
- package/node_modules/@maka/core/dist/computer-use.js +27 -93
- 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/diagnostic-log.js +18 -7
- package/node_modules/@maka/core/dist/display-redaction.js +18 -0
- package/node_modules/@maka/core/dist/durable-tool-result-projection.js +126 -0
- package/node_modules/@maka/core/dist/events.js +43 -14
- package/node_modules/@maka/core/dist/execution-inspect.js +12 -21
- package/node_modules/@maka/core/dist/foreign-session.js +3 -3
- package/node_modules/@maka/core/dist/goal.js +44 -2
- package/node_modules/@maka/core/dist/health.js +50 -45
- package/node_modules/@maka/core/dist/interaction.js +623 -2
- package/node_modules/@maka/core/dist/llm-connections.js +115 -87
- package/node_modules/@maka/core/dist/local-memory.js +2 -2
- package/node_modules/@maka/core/dist/maka-wordmark.js +23 -0
- package/node_modules/@maka/core/dist/model-call-attempt.js +134 -82
- package/node_modules/@maka/core/dist/model-call-usage-projection.js +0 -183
- package/node_modules/@maka/core/dist/model-catalog.js +191 -322
- package/node_modules/@maka/core/dist/model-facts.js +206 -0
- package/node_modules/@maka/core/dist/model-failure.js +40 -0
- package/node_modules/@maka/core/dist/model-metadata.generated.js +1910 -1875
- package/node_modules/@maka/core/dist/model-metadata.js +217 -209
- package/node_modules/@maka/core/dist/model-projection-transition.js +145 -0
- package/node_modules/@maka/core/dist/model-thinking.js +73 -24
- package/node_modules/@maka/core/dist/model-web-search.js +5 -4
- 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/permission-profile.js +17 -0
- package/node_modules/@maka/core/dist/permission.js +0 -1
- package/node_modules/@maka/core/dist/provider-auth.js +47 -291
- package/node_modules/@maka/core/dist/provider-registry.js +115 -373
- package/node_modules/@maka/core/dist/record-schema.js +22 -2
- package/node_modules/@maka/core/dist/redaction.js +78 -40
- package/node_modules/@maka/core/dist/relative-time.js +6 -5
- package/node_modules/@maka/core/dist/run-composition.js +77 -2
- package/node_modules/@maka/core/dist/runtime-boundary.js +182 -66
- package/node_modules/@maka/core/dist/runtime-event-store.js +6 -0
- package/node_modules/@maka/core/dist/runtime-event.js +254 -12
- package/node_modules/@maka/core/dist/runtime-handoff.js +106 -0
- package/node_modules/@maka/core/dist/runtime-invocation.js +223 -0
- package/node_modules/@maka/core/dist/runtime-logical-execution.js +137 -0
- package/node_modules/@maka/core/dist/runtime-policy/connection-catalog-codec.js +198 -44
- 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 +93 -0
- package/node_modules/@maka/core/dist/runtime-policy/policy-codec.js +118 -4
- package/node_modules/@maka/core/dist/runtime-policy.js +6 -2
- package/node_modules/@maka/core/dist/scheduled-task.js +12 -2
- package/node_modules/@maka/core/dist/session-name.js +0 -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-trace.js +5 -1
- package/node_modules/@maka/core/dist/session.js +313 -52
- package/node_modules/@maka/core/dist/settings.js +27 -8
- package/node_modules/@maka/core/dist/slash-command-catalog.js +4 -0
- package/node_modules/@maka/core/dist/task-submission-readiness.js +2 -1
- package/node_modules/@maka/core/dist/text-sanitize.js +27 -2
- package/node_modules/@maka/core/dist/tool-activity-args.js +4 -0
- package/node_modules/@maka/core/dist/tool-quiet-preview.js +20 -10
- package/node_modules/@maka/core/dist/tool-result-archive-evidence.js +22 -0
- package/node_modules/@maka/core/dist/tool-result-record-schema.js +5 -2
- package/node_modules/@maka/core/dist/ui-locale.js +23 -10
- package/node_modules/@maka/core/dist/unified-diff.js +33 -26
- package/node_modules/@maka/core/dist/usage-ledger-merge.js +10 -9
- package/node_modules/@maka/core/dist/usage-record-schema.js +38 -30
- package/node_modules/@maka/core/dist/usage-stats/types.js +2 -0
- package/node_modules/@maka/core/dist/workhub-action-result.js +68 -0
- package/node_modules/@maka/core/dist/workhub-routing.js +126 -0
- package/node_modules/@maka/core/node_modules/@formatjs/icu-messageformat-parser/index.js +2175 -0
- package/node_modules/@maka/core/node_modules/@formatjs/icu-messageformat-parser/manipulator.js +209 -0
- package/node_modules/@maka/core/node_modules/@formatjs/icu-messageformat-parser/no-parser.js +162 -0
- package/node_modules/@maka/core/node_modules/@formatjs/icu-messageformat-parser/package.json +21 -0
- package/node_modules/@maka/core/node_modules/@formatjs/icu-messageformat-parser/printer.js +224 -0
- package/node_modules/@maka/core/node_modules/intl-messageformat/intl-messageformat.iife.js +2807 -0
- package/node_modules/@maka/core/node_modules/intl-messageformat/package.json +40 -0
- package/node_modules/@maka/core/package.json +22 -3
- package/node_modules/@maka/eval/dist/experiment-directory.js +4 -13
- package/node_modules/@maka/eval/dist/external-subject.js +1 -1
- package/node_modules/@maka/eval/dist/harbor-external-subject.js +4 -3
- package/node_modules/@maka/eval/dist/harness-executor.js +3 -2
- package/node_modules/@maka/eval/dist/install-preflight.js +39 -10
- package/node_modules/@maka/eval/dist/process-termination.js +83 -0
- package/node_modules/@maka/eval/dist/toolchain-verification.js +1 -1
- package/node_modules/@maka/eval/harbor/egress-proxy/entrypoint.sh +2 -1
- package/node_modules/@maka/eval/node_modules/undici/docs/docs/api/Client.md +4 -0
- package/node_modules/@maka/eval/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +3 -2
- package/node_modules/@maka/eval/node_modules/undici/docs/docs/api/EventSource.md +4 -0
- package/node_modules/@maka/eval/node_modules/undici/lib/cache/memory-cache-store.js +1 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/agent.js +7 -2
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/balanced-pool.js +1 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/client-h1.js +12 -4
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/client-h2.js +43 -3
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/client.js +3 -2
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/dispatcher-base.js +13 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/dispatcher.js +10 -0
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +10 -3
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/proxy-agent.js +1 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/round-robin-pool.js +1 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +3 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/handler/cache-handler.js +8 -0
- package/node_modules/@maka/eval/node_modules/undici/lib/handler/decorator-handler.js +7 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/handler/deduplication-handler.js +12 -6
- package/node_modules/@maka/eval/node_modules/undici/lib/handler/redirect-handler.js +8 -0
- package/node_modules/@maka/eval/node_modules/undici/lib/handler/retry-handler.js +83 -11
- package/node_modules/@maka/eval/node_modules/undici/lib/interceptor/dump.js +1 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/mock/mock-agent.js +13 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/mock/mock-utils.js +11 -10
- package/node_modules/@maka/eval/node_modules/undici/lib/web/cookies/parse.js +4 -2
- package/node_modules/@maka/eval/node_modules/undici/lib/web/eventsource/eventsource-stream.js +28 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/web/eventsource/eventsource.js +4 -1
- package/node_modules/@maka/eval/node_modules/undici/lib/web/fetch/request.js +2 -3
- package/node_modules/@maka/eval/node_modules/undici/package.json +3 -3
- package/node_modules/@maka/eval/package.json +1 -1
- package/node_modules/@maka/mcp/dist/form-elicitation.js +213 -0
- package/node_modules/@maka/mcp/dist/index.js +465 -68
- package/node_modules/@maka/mcp/dist/sep-2243.js +3 -3
- package/node_modules/@maka/runtime/dist/agent-graph-timeline.js +12 -11
- package/node_modules/@maka/runtime/dist/agent-run-inspect.js +37 -85
- package/node_modules/@maka/runtime/dist/agent-run-recovery.js +36 -46
- package/node_modules/@maka/runtime/dist/agent-run.js +616 -468
- package/node_modules/@maka/runtime/dist/agent-swarm-status-tool.js +0 -1
- package/node_modules/@maka/runtime/dist/ai-sdk-backend.js +125 -3751
- package/node_modules/@maka/runtime/dist/ai-sdk-compaction-contract.js +6 -1
- package/node_modules/@maka/runtime/dist/ai-sdk-compaction.js +494 -521
- package/node_modules/@maka/runtime/dist/ai-sdk-message-projection.js +637 -0
- package/node_modules/@maka/runtime/dist/ai-sdk-tool-repair.js +115 -0
- package/node_modules/@maka/runtime/dist/ai-sdk-turn.js +2678 -0
- package/node_modules/@maka/runtime/dist/ask-user-question-tool.js +0 -1
- package/node_modules/@maka/runtime/dist/bash-model-output.js +7 -1
- package/node_modules/@maka/runtime/dist/bash-tail-buffer.js +13 -52
- package/node_modules/@maka/runtime/dist/bots/base-adapter.js +17 -0
- package/node_modules/@maka/runtime/dist/bots/bot-test.js +40 -23
- package/node_modules/@maka/runtime/dist/bots/dingtalk-bridge.js +93 -24
- package/node_modules/@maka/runtime/dist/bots/discord-bridge.js +4 -4
- package/node_modules/@maka/runtime/dist/bots/feishu-bridge.js +28 -25
- package/node_modules/@maka/runtime/dist/bots/qq-bridge.js +6 -4
- package/node_modules/@maka/runtime/dist/bots/slack-bridge.js +8 -7
- package/node_modules/@maka/runtime/dist/bots/telegram-bridge.js +7 -31
- package/node_modules/@maka/runtime/dist/bots/wechat-bridge.js +104 -48
- package/node_modules/@maka/runtime/dist/bots/wecom-bridge.js +45 -42
- package/node_modules/@maka/runtime/dist/bots/ws-bridge-base.js +2 -3
- package/node_modules/@maka/runtime/dist/builtin-tools.js +107 -115
- package/node_modules/@maka/runtime/dist/bundled-skill-catalog.generated.js +1 -1
- package/node_modules/@maka/runtime/dist/child-fd-input.js +3 -2
- package/node_modules/@maka/runtime/dist/code-mode.js +7 -4
- package/node_modules/@maka/runtime/dist/computer-use-codec.js +1 -141
- package/node_modules/@maka/runtime/dist/computer-use-tools.js +27 -106
- package/node_modules/@maka/runtime/dist/context-budget-helpers.js +4 -57
- package/node_modules/@maka/runtime/dist/context-budget-policy.js +26 -65
- package/node_modules/@maka/runtime/dist/context-budget.js +44 -103
- package/node_modules/@maka/runtime/dist/context-diagnostics.js +72 -33
- package/node_modules/@maka/runtime/dist/continuation-replay.js +22 -11
- package/node_modules/@maka/runtime/dist/conversation-copy.js +656 -188
- package/node_modules/@maka/runtime/dist/cua-frame-state.js +1 -69
- package/node_modules/@maka/runtime/dist/deep-research-tools.js +15 -24
- package/node_modules/@maka/runtime/dist/durable-tool-result-projection.js +436 -0
- package/node_modules/@maka/runtime/dist/edit-replace.js +2 -2
- package/node_modules/@maka/runtime/dist/execution-inspect.js +56 -41
- package/node_modules/@maka/runtime/dist/filesystem-executor.js +10 -6
- package/node_modules/@maka/runtime/dist/filesystem-worker/client.js +77 -19
- package/node_modules/@maka/runtime/dist/filesystem-worker/launch-spec.js +66 -55
- package/node_modules/@maka/runtime/dist/filesystem-worker/operations.js +34 -98
- package/node_modules/@maka/runtime/dist/filesystem-worker/protocol.js +25 -10
- package/node_modules/@maka/runtime/dist/filesystem-worker/worker-entry.js +2 -0
- package/node_modules/@maka/runtime/dist/github-copilot-oauth-enrollment.js +267 -0
- package/node_modules/@maka/runtime/dist/glob-search.js +74 -0
- package/node_modules/@maka/runtime/dist/goal-continuation.js +119 -13
- package/node_modules/@maka/runtime/dist/goal-evaluator.js +10 -4
- package/node_modules/@maka/runtime/dist/goal-state.js +7 -0
- package/node_modules/@maka/runtime/dist/grep-search.js +155 -0
- package/node_modules/@maka/runtime/dist/history-compact-checkpoint-coordinator.js +16 -6
- package/node_modules/@maka/runtime/dist/history-compact-checkpoint.js +79 -29
- 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-compact-ledger.js +18 -18
- package/node_modules/@maka/runtime/dist/history-compact-summarizer.js +132 -110
- package/node_modules/@maka/runtime/dist/history-compact-summary-validation.js +14 -30
- package/node_modules/@maka/runtime/dist/history-compaction.js +101 -89
- package/node_modules/@maka/runtime/dist/image-file.js +5 -20
- package/node_modules/@maka/runtime/dist/interaction-authority.js +85 -0
- package/node_modules/@maka/runtime/dist/latest-context-snapshot.js +112 -23
- package/node_modules/@maka/runtime/dist/ledger-tool-result-archive-reader.js +164 -0
- package/node_modules/@maka/runtime/dist/local-web-fetch.js +2 -43
- package/node_modules/@maka/runtime/dist/mcp-tools.js +93 -35
- package/node_modules/@maka/runtime/dist/memory-extraction-evidence.js +7 -1
- package/node_modules/@maka/runtime/dist/memory-extraction.js +23 -18
- package/node_modules/@maka/runtime/dist/message-authority.js +9 -0
- package/node_modules/@maka/runtime/dist/model-adapter.js +103 -122
- package/node_modules/@maka/runtime/dist/model-factory.js +34 -81
- package/node_modules/@maka/runtime/dist/model-fetcher.js +64 -10
- package/node_modules/@maka/runtime/dist/model-history.js +291 -159
- package/node_modules/@maka/runtime/dist/model-projection-transition-ledger.js +207 -0
- package/node_modules/@maka/runtime/dist/model-runtime.js +87 -110
- package/node_modules/@maka/runtime/dist/native-web-search-tool.js +2 -1
- package/node_modules/@maka/runtime/dist/oauth-provider-contracts.js +28 -1
- package/node_modules/@maka/runtime/dist/openai-codex-history-compactor.js +28 -73
- package/node_modules/@maka/runtime/dist/openai-responses-websocket.js +2 -5
- package/node_modules/@maka/runtime/dist/opencode-session-header.js +31 -0
- package/node_modules/@maka/runtime/dist/pipe-tail-collector.js +6 -9
- package/node_modules/@maka/runtime/dist/plan-mode.js +0 -65
- package/node_modules/@maka/runtime/dist/plan-tools.js +0 -3
- package/node_modules/@maka/runtime/dist/plugin-agent-service.js +131 -0
- package/node_modules/@maka/runtime/dist/plugin-approval-service.js +33 -0
- package/node_modules/@maka/runtime/dist/plugin-attachment-service.js +53 -0
- package/node_modules/@maka/runtime/dist/plugin-command-service.js +100 -0
- package/node_modules/@maka/runtime/dist/plugin-composition-loader.js +184 -22
- package/node_modules/@maka/runtime/dist/plugin-data-services.js +332 -0
- package/node_modules/@maka/runtime/dist/plugin-fs-service.js +62 -0
- package/node_modules/@maka/runtime/dist/plugin-goal-service.js +61 -0
- package/node_modules/@maka/runtime/dist/plugin-invocation-signal.js +24 -0
- package/node_modules/@maka/runtime/dist/plugin-llm-service.js +85 -0
- package/node_modules/@maka/runtime/dist/plugin-lsp-service.js +94 -0
- package/node_modules/@maka/runtime/dist/plugin-runtime.js +239 -10
- package/node_modules/@maka/runtime/dist/plugin-scope-registry.js +91 -0
- package/node_modules/@maka/runtime/dist/plugin-session-query-service.js +71 -0
- package/node_modules/@maka/runtime/dist/plugin-shell-env-service.js +87 -0
- package/node_modules/@maka/runtime/dist/plugin-shell-service.js +74 -0
- package/node_modules/@maka/runtime/dist/plugin-skill-service.js +93 -0
- package/node_modules/@maka/runtime/dist/plugin-system-prompt-service.js +346 -0
- package/node_modules/@maka/runtime/dist/plugin-tool-service.js +171 -0
- package/node_modules/@maka/runtime/dist/plugin-user-question-service.js +43 -0
- package/node_modules/@maka/runtime/dist/plugin-web-service.js +69 -0
- package/node_modules/@maka/runtime/dist/prior-run-context.js +24 -94
- package/node_modules/@maka/runtime/dist/process-tree-terminator.js +2 -2
- package/node_modules/@maka/runtime/dist/prompt-composition.js +36 -31
- package/node_modules/@maka/runtime/dist/provider-error-classification.js +84 -123
- package/node_modules/@maka/runtime/dist/provider-image-overflow-recovery.js +12 -31
- package/node_modules/@maka/runtime/dist/provider-request-telemetry.js +172 -196
- package/node_modules/@maka/runtime/dist/quiescent-session-snapshot.js +78 -0
- package/node_modules/@maka/runtime/dist/read-page.js +231 -0
- package/node_modules/@maka/runtime/dist/recovery-resolver.js +18 -14
- package/node_modules/@maka/runtime/dist/request-customization-fetch.js +14 -7
- package/node_modules/@maka/runtime/dist/request-projection.js +2 -15
- package/node_modules/@maka/runtime/dist/request-shape.js +187 -365
- package/node_modules/@maka/runtime/dist/ripgrep-executable.js +62 -0
- package/node_modules/@maka/runtime/dist/ripgrep-guidance.js +81 -0
- package/node_modules/@maka/runtime/dist/run-handoff-gate.js +97 -0
- package/node_modules/@maka/runtime/dist/run-trace.js +2 -34
- package/node_modules/@maka/runtime/dist/runtime-continuation-admission.js +1 -1
- package/node_modules/@maka/runtime/dist/runtime-event-backfill.js +107 -65
- package/node_modules/@maka/runtime/dist/runtime-event-read-model.js +415 -234
- package/node_modules/@maka/runtime/dist/runtime-kernel.js +518 -225
- package/node_modules/@maka/runtime/dist/runtime-ledger-repair.js +221 -448
- package/node_modules/@maka/runtime/dist/runtime-read-model.js +95 -198
- package/node_modules/@maka/runtime/dist/runtime-resume.js +162 -126
- package/node_modules/@maka/runtime/dist/sandbox/index.js +0 -1
- package/node_modules/@maka/runtime/dist/sandbox/linux-profile-path.js +7 -1
- package/node_modules/@maka/runtime/dist/sandbox/linux-sandbox.js +20 -17
- package/node_modules/@maka/runtime/dist/sandbox/macos-seatbelt.js +68 -21
- package/node_modules/@maka/runtime/dist/sandbox/sandbox-manager.js +0 -35
- package/node_modules/@maka/runtime/dist/sandbox/windows-sandbox.js +0 -12
- package/node_modules/@maka/runtime/dist/scheduled-task-tools.js +3 -0
- package/node_modules/@maka/runtime/dist/session-event-runtime-mapper.js +62 -21
- package/node_modules/@maka/runtime/dist/session-export.js +178 -0
- package/node_modules/@maka/runtime/dist/session-import.js +100 -0
- package/node_modules/@maka/runtime/dist/session-manager.js +672 -861
- package/node_modules/@maka/runtime/dist/session-projection-helpers.js +16 -28
- package/node_modules/@maka/runtime/dist/session-recap.js +87 -15
- package/node_modules/@maka/runtime/dist/session-todo-tools.js +67 -0
- package/node_modules/@maka/runtime/dist/session-trace-projection.js +25 -30
- package/node_modules/@maka/runtime/dist/shell-detect.js +3 -7
- package/node_modules/@maka/runtime/dist/shell-exec.js +7 -25
- package/node_modules/@maka/runtime/dist/shell-run-contract.js +0 -1
- package/node_modules/@maka/runtime/dist/shell-run-manager.js +11 -46
- package/node_modules/@maka/runtime/dist/shell-run-tool-result.js +14 -7
- package/node_modules/@maka/runtime/dist/shell-tools.js +84 -14
- package/node_modules/@maka/runtime/dist/stream-graph-coordinator.js +64 -13
- package/node_modules/@maka/runtime/dist/stream-graph-handoff.js +6 -1
- package/node_modules/@maka/runtime/dist/stream-graph-projection.js +18 -15
- package/node_modules/@maka/runtime/dist/stream-graph-read-model.js +5 -0
- package/node_modules/@maka/runtime/dist/stream-graph-supervisor-tools.js +0 -8
- package/node_modules/@maka/runtime/dist/stream-usage-fallback-fetch.js +74 -0
- package/node_modules/@maka/runtime/dist/subagent-tools.js +2 -80
- package/node_modules/@maka/runtime/dist/subscription-credentials.js +51 -4
- package/node_modules/@maka/runtime/dist/subscription-model-fetch.js +51 -11
- package/node_modules/@maka/runtime/dist/system-prompt/main-session-prompt.js +21 -2
- package/node_modules/@maka/runtime/dist/system-prompt/workspace-instructions.js +11 -6
- package/node_modules/@maka/runtime/dist/tavily-search.js +8 -2
- package/node_modules/@maka/runtime/dist/telemetry/model-pricing.generated.js +93 -83
- package/node_modules/@maka/runtime/dist/terminal-run-commit.js +37 -172
- package/node_modules/@maka/runtime/dist/test-connection.js +36 -30
- package/node_modules/@maka/runtime/dist/text-line-window.js +49 -0
- package/node_modules/@maka/runtime/dist/tool-activation-identity.js +41 -0
- package/node_modules/@maka/runtime/dist/tool-availability.js +85 -8
- package/node_modules/@maka/runtime/dist/tool-output.js +36 -13
- package/node_modules/@maka/runtime/dist/tool-result-archive-capability.js +24 -36
- package/node_modules/@maka/runtime/dist/tool-result-archive-encoding.js +38 -0
- package/node_modules/@maka/runtime/dist/tool-result-archive-resource.js +93 -245
- package/node_modules/@maka/runtime/dist/tool-result-archive-transition.js +186 -0
- package/node_modules/@maka/runtime/dist/tool-result-archive.js +50 -173
- package/node_modules/@maka/runtime/dist/tool-runtime.js +380 -126
- package/node_modules/@maka/runtime/dist/unified-diff.js +40 -10
- package/node_modules/@maka/runtime/dist/web-fetch-tool.js +4 -2
- package/node_modules/@maka/runtime/dist/workers/filesystem-worker.js +12332 -4656
- package/node_modules/@maka/runtime/dist/workspace-executor.js +22 -30
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/code-mode/LICENSE +13 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/code-mode/dist/run-code-mode.js +551 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/code-mode/package.json +78 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/gateway/CHANGELOG.md +3269 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/gateway/LICENSE +13 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/gateway/dist/index.js +3835 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/gateway/docs/00-ai-gateway.mdx +1610 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/gateway/package.json +80 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/provider/CHANGELOG.md +1262 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/provider/LICENSE +13 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/provider/README.md +1 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/provider/dist/index.js +426 -0
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/provider/package.json +63 -0
- package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/README.md +44 -8
- package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/dist/package.json +4 -4
- package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/dist/src/SlackWebSocket.js +39 -3
- package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/dist/src/SocketModeClient.js +4 -0
- package/node_modules/@maka/runtime/node_modules/@slack/socket-mode/package.json +4 -4
- package/node_modules/@maka/runtime/node_modules/ai/CHANGELOG.md +10271 -0
- package/node_modules/@maka/runtime/node_modules/ai/LICENSE +13 -0
- package/node_modules/@maka/runtime/node_modules/ai/dist/index.js +20146 -0
- package/node_modules/@maka/runtime/node_modules/ai/dist/internal/index.js +3690 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/02-foundations/02-providers-and-models.mdx +185 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-agents/04-loop-control.mdx +517 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-agents/06-policy-tool-approvals.mdx +413 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-agents/06-tool-approvals.mdx +338 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-agents/07-workflow-agent.mdx +815 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/10-generating-structured-data.mdx +525 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/15-tools-and-tool-calling.mdx +1512 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/16-mcp-tools.mdx +680 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/35-image-generation.mdx +371 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/36-transcription.mdx +333 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/37-speech.mdx +163 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/39-file-uploads.mdx +180 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/42-batch.mdx +372 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/50-error-handling.mdx +241 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/60-telemetry.mdx +855 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-core/index.mdx +137 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-harnesses/02-harness-agent.mdx +683 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-harnesses/04-skills.mdx +69 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/03-ai-sdk-harnesses/05-harness-adapters.mdx +47 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/04-ai-sdk-ui/03-chatbot-tool-usage.mdx +826 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/04-ai-sdk-ui/20-streaming-data.mdx +406 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/04-ai-sdk-ui/21-transport.mdx +216 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/04-ai-sdk-ui/50-stream-protocol.mdx +582 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/06-advanced/04-caching.mdx +182 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/06-advanced/11-secure-url-fetching.mdx +117 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/01-generate-text.mdx +3267 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/02-stream-text.mdx +4303 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/05-embed.mdx +330 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/06-embed-many.mdx +332 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/06-rerank.mdx +331 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/10-generate-image.mdx +253 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/14-upload-file.mdx +125 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/16-tool-loop-agent.mdx +1102 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/20-start-batch.mdx +154 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/21-get-batch-status.mdx +133 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/22-get-batch-results.mdx +109 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/23-cancel-batch.mdx +96 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/24-list-batches.mdx +121 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/28-output.mdx +368 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/31-ui-message.mdx +331 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/80-smooth-stream.mdx +147 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/01-ai-sdk-core/index.mdx +250 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/02-ai-sdk-ui/01-use-chat.mdx +493 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/02-ai-sdk-ui/31-convert-to-model-messages.mdx +256 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/02-ai-sdk-ui/40-create-ui-message-stream.mdx +199 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/02-ai-sdk-ui/41-create-ui-message-stream-response.mdx +125 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/01-workflow-agent.mdx +1035 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/02-workflow-chat-transport.mdx +361 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/03-generate-video.mdx +157 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/index.mdx +32 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/05-ai-sdk-errors/ai-invalid-argument-error.mdx +31 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/05-ai-sdk-errors/ai-no-image-generated-error.mdx +43 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/05-ai-sdk-errors/ai-stream-provider-error.mdx +52 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/05-ai-sdk-errors/ai-tool-choice-violation-error.mdx +38 -0
- package/node_modules/@maka/runtime/node_modules/ai/docs/07-reference/05-ai-sdk-errors/index.mdx +43 -0
- package/node_modules/@maka/runtime/node_modules/ai/package.json +127 -0
- package/node_modules/@maka/runtime/node_modules/undici/docs/docs/api/Client.md +4 -0
- package/node_modules/@maka/runtime/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +3 -2
- package/node_modules/@maka/runtime/node_modules/undici/docs/docs/api/EventSource.md +4 -0
- package/node_modules/@maka/runtime/node_modules/undici/lib/cache/memory-cache-store.js +1 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/agent.js +7 -2
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/balanced-pool.js +1 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/client-h1.js +12 -4
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/client-h2.js +43 -3
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/client.js +3 -2
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/dispatcher-base.js +13 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/dispatcher.js +10 -0
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +10 -3
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/proxy-agent.js +1 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/round-robin-pool.js +1 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +3 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/handler/cache-handler.js +8 -0
- package/node_modules/@maka/runtime/node_modules/undici/lib/handler/decorator-handler.js +7 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/handler/deduplication-handler.js +12 -6
- package/node_modules/@maka/runtime/node_modules/undici/lib/handler/redirect-handler.js +8 -0
- package/node_modules/@maka/runtime/node_modules/undici/lib/handler/retry-handler.js +83 -11
- package/node_modules/@maka/runtime/node_modules/undici/lib/interceptor/dump.js +1 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/mock/mock-agent.js +13 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/mock/mock-utils.js +11 -10
- package/node_modules/@maka/runtime/node_modules/undici/lib/web/cookies/parse.js +4 -2
- package/node_modules/@maka/runtime/node_modules/undici/lib/web/eventsource/eventsource-stream.js +28 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/web/eventsource/eventsource.js +4 -1
- package/node_modules/@maka/runtime/node_modules/undici/lib/web/fetch/request.js +2 -3
- package/node_modules/@maka/runtime/node_modules/undici/package.json +3 -3
- package/node_modules/@maka/runtime/package.json +41 -15
- package/node_modules/@maka/runtime-host/dist/adapter/session-projector.js +75 -38
- package/node_modules/@maka/runtime-host/dist/candidate-entry.js +10 -2
- package/node_modules/@maka/runtime-host/dist/candidate-launch-owner-guard.js +13 -0
- package/node_modules/@maka/runtime-host/dist/client/catalog-reader.js +64 -25
- package/node_modules/@maka/runtime-host/dist/client/client-capability-channel.js +87 -3
- package/node_modules/@maka/runtime-host/dist/client/connect-or-spawn.js +13 -2
- package/node_modules/@maka/runtime-host/dist/client/connection.js +144 -51
- package/node_modules/@maka/runtime-host/dist/client/host-handoff-copy.js +238 -0
- package/node_modules/@maka/runtime-host/dist/client/host-handoff.js +309 -0
- package/node_modules/@maka/runtime-host/dist/client/host-profile.js +483 -94
- package/node_modules/@maka/runtime-host/dist/client/host-retirement.js +28 -5
- package/node_modules/@maka/runtime-host/dist/client/index.js +12 -8
- package/node_modules/@maka/runtime-host/dist/client/launcher.js +12 -3
- 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 +38 -4
- package/node_modules/@maka/runtime-host/dist/client/peer-client.js +408 -25
- package/node_modules/@maka/runtime-host/dist/client/process-identity.js +73 -0
- package/node_modules/@maka/runtime-host/dist/client/reconnect-lifecycle.js +72 -7
- package/node_modules/@maka/runtime-host/dist/client/reconnecting-connection.js +11 -0
- package/node_modules/@maka/runtime-host/dist/client/registered-host-termination.js +107 -0
- package/node_modules/@maka/runtime-host/dist/client/remote-compatibility-error.js +2 -0
- package/node_modules/@maka/runtime-host/dist/client/session-subscription.js +46 -5
- package/node_modules/@maka/runtime-host/dist/client/ssh-operator-activation.js +48 -11
- package/node_modules/@maka/runtime-host/dist/client/wsl-control.js +0 -8
- package/node_modules/@maka/runtime-host/dist/client/wsl-environment.js +12 -8
- package/node_modules/@maka/runtime-host/dist/client-capability-entity-id.js +27 -0
- package/node_modules/@maka/runtime-host/dist/control/endpoint.js +1 -3
- package/node_modules/@maka/runtime-host/dist/node-error.js +22 -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 +5 -2
- package/node_modules/@maka/runtime-host/dist/operator/managed-deployment.js +17 -8
- package/node_modules/@maka/runtime-host/dist/operator/operator-command.js +110 -0
- package/node_modules/@maka/runtime-host/dist/operator/peer-management-frame.js +2 -0
- package/node_modules/@maka/runtime-host/dist/operator/peer-mesh-management-frame.js +14 -0
- package/node_modules/@maka/runtime-host/dist/operator/retirement-cancellation.js +20 -0
- package/node_modules/@maka/runtime-host/dist/operator/service-management-frame.js +5 -6
- package/node_modules/@maka/runtime-host/dist/operator/setup-frame.js +32 -6
- package/node_modules/@maka/runtime-host/dist/peer-mesh/display-name.js +30 -0
- package/node_modules/@maka/runtime-host/dist/peer-mesh/index.js +3 -3
- package/node_modules/@maka/runtime-host/dist/peer-mesh/limits.js +1 -2
- package/node_modules/@maka/runtime-host/dist/peer-mesh/model.js +72 -73
- package/node_modules/@maka/runtime-host/dist/peer-mesh/node.js +1334 -418
- package/node_modules/@maka/runtime-host/dist/peer-mesh/owner.js +33 -68
- package/node_modules/@maka/runtime-host/dist/peer-mesh/store.js +147 -52
- package/node_modules/@maka/runtime-host/dist/peer-reachability/index.js +21 -0
- package/node_modules/@maka/runtime-host/dist/peer-reachability/model.js +202 -0
- package/node_modules/@maka/runtime-host/dist/peer-reachability/owner.js +118 -0
- package/node_modules/@maka/runtime-host/dist/peer-reachability/publisher.js +243 -0
- package/node_modules/@maka/runtime-host/dist/protocol/agent-graph.js +4 -1
- package/node_modules/@maka/runtime-host/dist/protocol/artifact.js +11 -20
- package/node_modules/@maka/runtime-host/dist/protocol/client-capability.js +233 -41
- package/node_modules/@maka/runtime-host/dist/protocol/configuration.js +55 -9
- package/node_modules/@maka/runtime-host/dist/protocol/connection-catalog-change.js +26 -0
- package/node_modules/@maka/runtime-host/dist/protocol/connection-effects.js +15 -8
- package/node_modules/@maka/runtime-host/dist/protocol/external-agent-setup.js +149 -0
- package/node_modules/@maka/runtime-host/dist/protocol/external-session.js +4 -0
- package/node_modules/@maka/runtime-host/dist/protocol/host-resources.js +253 -0
- package/node_modules/@maka/runtime-host/dist/protocol/host-status.js +49 -11
- package/node_modules/@maka/runtime-host/dist/protocol/index.js +206 -2
- package/node_modules/@maka/runtime-host/dist/protocol/message.js +14 -9
- package/node_modules/@maka/runtime-host/dist/protocol/network-proxy.js +1 -7
- package/node_modules/@maka/runtime-host/dist/protocol/oauth.js +104 -8
- package/node_modules/@maka/runtime-host/dist/protocol/operations.js +22 -5
- package/node_modules/@maka/runtime-host/dist/protocol/peer-mesh.js +72 -32
- package/node_modules/@maka/runtime-host/dist/protocol/plan.js +1 -0
- package/node_modules/@maka/runtime-host/dist/protocol/plugin-platform.js +559 -0
- package/node_modules/@maka/runtime-host/dist/protocol/project-catalog.js +2 -2
- package/node_modules/@maka/runtime-host/dist/protocol/runtime-policy.js +81 -26
- package/node_modules/@maka/runtime-host/dist/protocol/scheduled-task.js +19 -6
- package/node_modules/@maka/runtime-host/dist/protocol/session-bundle.js +100 -0
- package/node_modules/@maka/runtime-host/dist/protocol/session-catalog.js +1 -1
- package/node_modules/@maka/runtime-host/dist/protocol/session-collaboration.js +68 -4
- package/node_modules/@maka/runtime-host/dist/protocol/session-continuity.js +44 -23
- package/node_modules/@maka/runtime-host/dist/protocol/session-retirement.js +30 -3
- package/node_modules/@maka/runtime-host/dist/protocol/session-revision.js +11 -2
- package/node_modules/@maka/runtime-host/dist/protocol/session-todo.js +53 -0
- package/node_modules/@maka/runtime-host/dist/protocol/session-transcript.js +3 -7
- package/node_modules/@maka/runtime-host/dist/protocol/session-turns.js +29 -58
- package/node_modules/@maka/runtime-host/dist/protocol/skill-catalog.js +2 -1
- package/node_modules/@maka/runtime-host/dist/protocol/turn.js +25 -14
- package/node_modules/@maka/runtime-host/dist/protocol/usage-pricing.js +20 -2
- package/node_modules/@maka/runtime-host/dist/protocol/workhub-coordination.js +212 -75
- package/node_modules/@maka/runtime-host/dist/server/access-authority.js +87 -22
- 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 +135 -48
- package/node_modules/@maka/runtime-host/dist/server/acp/antigravity-install.js +242 -0
- package/node_modules/@maka/runtime-host/dist/server/acp/antigravity.js +154 -0
- package/node_modules/@maka/runtime-host/dist/server/acp/connection.js +116 -0
- package/node_modules/@maka/runtime-host/dist/server/agent-graph-coordinator.js +0 -3
- package/node_modules/@maka/runtime-host/dist/server/agent-graph-execution-coordinator.js +1 -2
- package/node_modules/@maka/runtime-host/dist/server/artifact-coordinator.js +19 -22
- package/node_modules/@maka/runtime-host/dist/server/bootstrap-runtime-policy.js +10 -4
- package/node_modules/@maka/runtime-host/dist/server/candidate.js +3 -0
- package/node_modules/@maka/runtime-host/dist/server/canonical-session-projection.js +2 -1
- package/node_modules/@maka/runtime-host/dist/server/canonical-turn-snapshot.js +34 -24
- package/node_modules/@maka/runtime-host/dist/server/canonical-usage-reader.js +24 -11
- 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 +282 -30
- package/node_modules/@maka/runtime-host/dist/server/client-capability-invocation-broker.js +258 -51
- package/node_modules/@maka/runtime-host/dist/server/client-capability-provider-id.js +31 -0
- package/node_modules/@maka/runtime-host/dist/server/client-capability-recovery.js +10 -7
- 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 +43 -18
- package/node_modules/@maka/runtime-host/dist/server/connection-session.js +45 -14
- package/node_modules/@maka/runtime-host/dist/server/daily-review-coordinator.js +164 -82
- package/node_modules/@maka/runtime-host/dist/server/deep-research-coordinator.js +1 -1
- package/node_modules/@maka/runtime-host/dist/server/execution-artifacts.js +59 -36
- package/node_modules/@maka/runtime-host/dist/server/execution-composition.js +1076 -176
- package/node_modules/@maka/runtime-host/dist/server/execution-inspect-coordinator.js +35 -29
- package/node_modules/@maka/runtime-host/dist/server/execution-model-authority.js +112 -18
- package/node_modules/@maka/runtime-host/dist/server/execution-model-composition.js +85 -73
- package/node_modules/@maka/runtime-host/dist/server/execution-service.js +49 -24
- 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/external-agent-setup-coordinator.js +190 -0
- package/node_modules/@maka/runtime-host/dist/server/external-session-coordinator.js +13 -10
- package/node_modules/@maka/runtime-host/dist/server/failure-diagnostic.js +24 -0
- package/node_modules/@maka/runtime-host/dist/server/goal-coordinator.js +134 -35
- 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 +163 -27
- package/node_modules/@maka/runtime-host/dist/server/host-residency-registry.js +41 -20
- package/node_modules/@maka/runtime-host/dist/server/host-resource-collector.js +223 -0
- package/node_modules/@maka/runtime-host/dist/server/host-resource-probe-main.js +44 -0
- package/node_modules/@maka/runtime-host/dist/server/host-resource-probe.js +83 -0
- package/node_modules/@maka/runtime-host/dist/server/host-session-availability.js +5 -2
- package/node_modules/@maka/runtime-host/dist/server/hosted-execution-admission-registry.js +3 -1
- package/node_modules/@maka/runtime-host/dist/server/hosted-execution-projection.js +12 -7
- package/node_modules/@maka/runtime-host/dist/server/hosted-execution-recovery.js +131 -69
- package/node_modules/@maka/runtime-host/dist/server/hosted-execution-tool-profile.js +64 -4
- package/node_modules/@maka/runtime-host/dist/server/index.js +5 -0
- package/node_modules/@maka/runtime-host/dist/server/interaction-coordinator.js +370 -34
- package/node_modules/@maka/runtime-host/dist/server/interaction-projection.js +36 -1
- package/node_modules/@maka/runtime-host/dist/server/interactive-run-composer.js +173 -109
- package/node_modules/@maka/runtime-host/dist/server/json-array-page-budget.js +48 -0
- package/node_modules/@maka/runtime-host/dist/server/listener-set.js +6 -4
- package/node_modules/@maka/runtime-host/dist/server/memory-projection.js +14 -15
- package/node_modules/@maka/runtime-host/dist/server/message-coordinator.js +339 -66
- 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/oauth-coordinator.js +169 -45
- package/node_modules/@maka/runtime-host/dist/server/oauth-execution-authority.js +20 -3
- package/node_modules/@maka/runtime-host/dist/server/operation-dispatcher.js +47 -125
- package/node_modules/@maka/runtime-host/dist/server/peer-listener.js +131 -48
- package/node_modules/@maka/runtime-host/dist/server/peer-mesh-authority.js +20 -1
- package/node_modules/@maka/runtime-host/dist/server/plan-coordinator.js +11 -5
- 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-data-runtime.js +234 -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 +263 -0
- package/node_modules/@maka/runtime-host/dist/server/plugin-platform.js +1148 -0
- package/node_modules/@maka/runtime-host/dist/server/project-catalog-coordinator.js +10 -12
- package/node_modules/@maka/runtime-host/dist/server/project-directory-authority.js +4 -3
- package/node_modules/@maka/runtime-host/dist/server/root-admission-owner.js +32 -7
- package/node_modules/@maka/runtime-host/dist/server/root-turn-coordinator.js +690 -188
- package/node_modules/@maka/runtime-host/dist/server/runtime-policy-coordinator.js +72 -18
- package/node_modules/@maka/runtime-host/dist/server/runtime-resource-coordinator.js +11 -8
- package/node_modules/@maka/runtime-host/dist/server/runtime-resource-projection.js +12 -18
- package/node_modules/@maka/runtime-host/dist/server/scheduled-task-coordinator.js +150 -41
- package/node_modules/@maka/runtime-host/dist/server/serial-outbound-writer.js +46 -4
- package/node_modules/@maka/runtime-host/dist/server/session-admission-gate.js +21 -1
- package/node_modules/@maka/runtime-host/dist/server/session-bundle-coordinator.js +163 -0
- package/node_modules/@maka/runtime-host/dist/server/session-catalog-coordinator.js +247 -33
- package/node_modules/@maka/runtime-host/dist/server/session-continuity-coordinator.js +112 -48
- package/node_modules/@maka/runtime-host/dist/server/session-effect-coordinator.js +1 -1
- package/node_modules/@maka/runtime-host/dist/server/session-retirement-coordinator.js +66 -14
- package/node_modules/@maka/runtime-host/dist/server/session-revision-coordinator.js +113 -67
- package/node_modules/@maka/runtime-host/dist/server/session-revision-graph-references.js +18 -10
- package/node_modules/@maka/runtime-host/dist/server/session-sidecar-purge.js +2 -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 +34 -5
- package/node_modules/@maka/runtime-host/dist/server/session-transcript-reader.js +404 -87
- package/node_modules/@maka/runtime-host/dist/server/session-turn-access-request-coordinator.js +43 -26
- package/node_modules/@maka/runtime-host/dist/server/shared-session-transcript.js +4 -1
- package/node_modules/@maka/runtime-host/dist/server/skill-catalog-coordinator.js +18 -2
- package/node_modules/@maka/runtime-host/dist/server/skill-catalog-repository.js +16 -17
- package/node_modules/@maka/runtime-host/dist/server/storage-maintenance.js +109 -0
- package/node_modules/@maka/runtime-host/dist/server/usage-pricing-coordinator.js +79 -35
- 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 +566 -37
- package/node_modules/@maka/runtime-host/dist/server/workhub-coordination-coordinator.js +590 -131
- package/node_modules/@maka/runtime-host/dist/server/workhub-message-attachments.js +46 -0
- package/node_modules/@maka/runtime-host/dist/transport/framed-byte-stream-transport.js +4 -1
- package/node_modules/@maka/runtime-host/dist/transport/local-ipc-framing.js +4 -2
- package/node_modules/@maka/runtime-host/dist/transport/peer-native.js +112 -24
- package/node_modules/@maka/runtime-host/dist/transport/resumable-peer-stream.js +469 -0
- package/node_modules/@maka/runtime-host/dist/webrtc-stun-policy.js +114 -0
- package/node_modules/@maka/runtime-host/package.json +7 -1
- package/node_modules/@maka/storage/dist/agent-run-store.js +355 -238
- package/node_modules/@maka/storage/dist/artifact-attachments.js +66 -18
- package/node_modules/@maka/storage/dist/artifact-metadata-codec.js +24 -28
- package/node_modules/@maka/storage/dist/artifact-store.js +203 -767
- package/node_modules/@maka/storage/dist/artifact-stores.js +6 -10
- package/node_modules/@maka/storage/dist/artifact-writer-lock.js +1 -1
- package/node_modules/@maka/storage/dist/atomic-file-write.js +74 -0
- package/node_modules/@maka/storage/dist/claude-code-session-adapter.js +0 -5
- package/node_modules/@maka/storage/dist/codex-session-adapter.js +298 -198
- package/node_modules/@maka/storage/dist/context-offload-snapshot.js +397 -0
- package/node_modules/@maka/storage/dist/context-value-mutation-gate.js +59 -0
- package/node_modules/@maka/storage/dist/conversation-operational-state.js +7 -0
- package/node_modules/@maka/storage/dist/credential-store.js +15 -63
- package/node_modules/@maka/storage/dist/execution-record-codec.js +1 -22
- package/node_modules/@maka/storage/dist/execution-stores.js +38 -21
- package/node_modules/@maka/storage/dist/file-lifetime-owner.js +30 -2
- package/node_modules/@maka/storage/dist/file-session-repository.js +1012 -0
- package/node_modules/@maka/storage/dist/git-exec.js +61 -0
- package/node_modules/@maka/storage/dist/git-worktree-child-executor.js +8 -35
- package/node_modules/@maka/storage/dist/goal-authority.js +2 -2
- package/node_modules/@maka/storage/dist/interaction-store-public.js +1 -1
- package/node_modules/@maka/storage/dist/interaction-store.js +188 -3
- package/node_modules/@maka/storage/dist/legacy-run-header.js +327 -0
- package/node_modules/@maka/storage/dist/mcp-config-store.js +10 -25
- package/node_modules/@maka/storage/dist/message-admission-store.js +3 -0
- package/node_modules/@maka/storage/dist/model-call-ledger.js +199 -32
- package/node_modules/@maka/storage/dist/model-call-usage-sql.js +136 -0
- package/node_modules/@maka/storage/dist/model-facts-store.js +56 -0
- package/node_modules/@maka/storage/dist/opencode-session-adapter.js +0 -4
- package/node_modules/@maka/storage/dist/operational-state-backup.js +15 -11
- package/node_modules/@maka/storage/dist/operational-state-store-public.js +1 -1
- package/node_modules/@maka/storage/dist/operational-state-store.js +27 -2
- package/node_modules/@maka/storage/dist/production-session-snapshot.js +761 -0
- package/node_modules/@maka/storage/dist/project-catalog.js +8 -23
- package/node_modules/@maka/storage/dist/quiescent-session-snapshot.js +1154 -0
- package/node_modules/@maka/storage/dist/runtime-event-invariants.js +2 -2
- package/node_modules/@maka/storage/dist/runtime-event-persistence.js +6 -0
- package/node_modules/@maka/storage/dist/runtime-policy/connection-catalog-document.js +182 -62
- package/node_modules/@maka/storage/dist/runtime-policy/coordinator.js +540 -117
- package/node_modules/@maka/storage/dist/runtime-policy/document-io.js +22 -16
- package/node_modules/@maka/storage/dist/runtime-policy/oauth-login-receipt-document.js +207 -0
- package/node_modules/@maka/storage/dist/runtime-policy/onboarding-transaction.js +148 -5
- package/node_modules/@maka/storage/dist/runtime-policy/policy-document.js +10 -4
- package/node_modules/@maka/storage/dist/runtime-policy-stores.js +7 -3
- package/node_modules/@maka/storage/dist/runtime-transcript-query.js +321 -0
- package/node_modules/@maka/storage/dist/scheduled-task-store.js +256 -283
- package/node_modules/@maka/storage/dist/session-bundle-manifest.js +5 -17
- package/node_modules/@maka/storage/dist/session-bundle-policy.js +1031 -34
- package/node_modules/@maka/storage/dist/session-bundle-ustar.js +12 -0
- package/node_modules/@maka/storage/dist/session-copy-cleanup.js +12 -7
- package/node_modules/@maka/storage/dist/session-message-projection.js +24 -5
- package/node_modules/@maka/storage/dist/session-repository.js +767 -0
- package/node_modules/@maka/storage/dist/session-store.js +110 -115
- package/node_modules/@maka/storage/dist/session-todo-authority.js +106 -0
- package/node_modules/@maka/storage/dist/session-todo-store.js +169 -0
- package/node_modules/@maka/storage/dist/settings-store.js +24 -29
- package/node_modules/@maka/storage/dist/sqlite-artifact-metadata.js +51 -17
- package/node_modules/@maka/storage/dist/sqlite-artifact-schema.js +55 -5
- package/node_modules/@maka/storage/dist/sqlite-context-offload-store.js +42 -12
- package/node_modules/@maka/storage/dist/sqlite-core-execution-schema.js +45 -2
- package/node_modules/@maka/storage/dist/sqlite-runtime-schema.js +367 -1
- package/node_modules/@maka/storage/dist/sqlite-runtime-store.js +439 -82
- package/node_modules/@maka/storage/dist/sqlite-session-metadata-schema.js +63 -5
- package/node_modules/@maka/storage/dist/sqlite-session-metadata-store.js +493 -914
- package/node_modules/@maka/storage/dist/sqlite-usage-schema.js +200 -20
- package/node_modules/@maka/storage/dist/sqlite-usage-store.js +29 -6
- package/node_modules/@maka/storage/dist/sqlite-workflow-schema.js +5 -8
- package/node_modules/@maka/storage/dist/stable-storage.js +16 -2
- package/node_modules/@maka/storage/dist/storage-id.js +28 -0
- package/node_modules/@maka/storage/dist/storage-writer-composition.js +3 -3
- package/node_modules/@maka/storage/dist/tool-result-archive-evidence.js +138 -0
- package/node_modules/@maka/storage/dist/usage-stores.js +9 -3
- package/node_modules/@maka/storage/dist/work-board-store.js +4 -4
- package/node_modules/@maka/storage/dist/workspace-identity.js +2 -15
- package/node_modules/@maka/storage/dist/workspace-version-authority-internal.js +1 -8
- package/node_modules/@maka/storage/package.json +8 -2
- package/node_modules/@modelcontextprotocol/client/dist/src-D_zzAWoS.mjs +22 -5
- package/node_modules/@modelcontextprotocol/client/dist/src-NAgB4Mp8.cjs +22 -5
- package/node_modules/@slack/types/dist/events/agent.js +3 -0
- package/node_modules/@slack/types/dist/events/index.js +44 -0
- package/node_modules/@slack/types/package.json +47 -0
- package/node_modules/@slack/web-api/README.md +382 -0
- package/node_modules/@slack/web-api/dist/methods.js +1636 -0
- package/node_modules/@slack/web-api/dist/types/request/agents.js +3 -0
- package/node_modules/@slack/web-api/dist/types/request/blocks.js +3 -0
- package/node_modules/@slack/web-api/dist/types/response/AdminUsersGetExpirationResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/AgentsSessionsRenameResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/AgentsSessionsSetStatusResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/BlocksValidateResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/ChatAppendStreamResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/ChatStartStreamResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/ChatStopStreamResponse.js +48 -0
- package/node_modules/@slack/web-api/dist/types/response/PinsListResponse.js +67 -0
- package/node_modules/@slack/web-api/dist/types/response/SearchAllResponse.js +72 -0
- package/node_modules/@slack/web-api/dist/types/response/SearchFilesResponse.js +48 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsAccessDeleteResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsAccessSetResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsCreateResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadGetResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadStartResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsCreateResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteMultipleResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsInfoResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsListResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsItemsUpdateResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/SlackListsUpdateResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedAddResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedListResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedRemoveResponse.js +11 -0
- package/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedSetResponse.js +11 -0
- package/node_modules/@slack/web-api/node_modules/@types/retry/LICENSE +21 -0
- package/node_modules/@slack/web-api/node_modules/@types/retry/README.md +15 -0
- package/node_modules/@slack/web-api/node_modules/@types/retry/package.json +30 -0
- package/node_modules/@slack/web-api/package.json +71 -0
- package/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/balanced-match/LICENSE.md +23 -0
- package/node_modules/balanced-match/README.md +57 -0
- package/node_modules/balanced-match/dist/commonjs/index.js +59 -0
- package/node_modules/balanced-match/dist/commonjs/package.json +3 -0
- package/node_modules/balanced-match/dist/esm/index.js +54 -0
- package/node_modules/balanced-match/dist/esm/package.json +3 -0
- package/node_modules/balanced-match/package.json +68 -0
- package/node_modules/brace-expansion/LICENSE +23 -0
- package/node_modules/brace-expansion/README.md +105 -0
- package/node_modules/brace-expansion/dist/commonjs/index.js +289 -0
- package/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
- package/node_modules/brace-expansion/dist/esm/index.js +285 -0
- package/node_modules/brace-expansion/dist/esm/package.json +3 -0
- package/node_modules/brace-expansion/package.json +64 -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/fs-native-extensions/package.json +1 -1
- package/node_modules/fs-native-extensions/prebuilds/android-arm/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/android-arm64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/android-ia32/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/android-x64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/darwin-arm64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/darwin-arm64/fs-native-extensions.node +0 -0
- package/node_modules/fs-native-extensions/prebuilds/darwin-x64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/darwin-x64/fs-native-extensions.node +0 -0
- package/node_modules/fs-native-extensions/prebuilds/ios-arm64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/ios-arm64-simulator/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/ios-x64-simulator/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/linux-arm64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/linux-x64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/win32-arm64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/win32-arm64/fs-native-extensions.node +0 -0
- package/node_modules/fs-native-extensions/prebuilds/win32-x64/fs-native-extensions.bare +0 -0
- package/node_modules/fs-native-extensions/prebuilds/win32-x64/fs-native-extensions.node +0 -0
- package/node_modules/fs-native-extensions/src/win32.c +50 -11
- package/node_modules/glob/LICENSE.md +63 -0
- package/node_modules/glob/README.md +1203 -0
- package/node_modules/glob/dist/commonjs/glob.js +248 -0
- package/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/node_modules/glob/dist/commonjs/ignore.js +119 -0
- package/node_modules/glob/dist/commonjs/index.js +68 -0
- package/node_modules/glob/dist/commonjs/index.min.js +4 -0
- package/node_modules/glob/dist/commonjs/package.json +3 -0
- package/node_modules/glob/dist/commonjs/pattern.js +223 -0
- package/node_modules/glob/dist/commonjs/processor.js +301 -0
- package/node_modules/glob/dist/commonjs/walker.js +387 -0
- package/node_modules/glob/dist/esm/glob.js +244 -0
- package/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/node_modules/glob/dist/esm/ignore.js +115 -0
- package/node_modules/glob/dist/esm/index.js +55 -0
- package/node_modules/glob/dist/esm/index.min.js +4 -0
- package/node_modules/glob/dist/esm/package.json +3 -0
- package/node_modules/glob/dist/esm/pattern.js +219 -0
- package/node_modules/glob/dist/esm/processor.js +294 -0
- package/node_modules/glob/dist/esm/walker.js +381 -0
- package/node_modules/glob/package.json +98 -0
- package/node_modules/minimatch/LICENSE.md +55 -0
- package/node_modules/minimatch/README.md +528 -0
- package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/node_modules/minimatch/dist/commonjs/ast.js +845 -0
- package/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
- package/node_modules/minimatch/dist/commonjs/escape.js +30 -0
- package/node_modules/minimatch/dist/commonjs/index.js +1127 -0
- package/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
- package/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/node_modules/minimatch/dist/esm/ast.js +841 -0
- package/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
- package/node_modules/minimatch/dist/esm/escape.js +26 -0
- package/node_modules/minimatch/dist/esm/index.js +1114 -0
- package/node_modules/minimatch/dist/esm/package.json +3 -0
- package/node_modules/minimatch/dist/esm/unescape.js +34 -0
- package/node_modules/minimatch/package.json +73 -0
- package/node_modules/minipass/LICENSE.md +55 -0
- package/node_modules/minipass/README.md +825 -0
- package/node_modules/minipass/dist/commonjs/index.js +1038 -0
- package/node_modules/minipass/dist/commonjs/package.json +3 -0
- package/node_modules/minipass/dist/esm/index.js +1020 -0
- package/node_modules/minipass/dist/esm/package.json +3 -0
- package/node_modules/minipass/package.json +77 -0
- package/node_modules/path-scurry/LICENSE.md +55 -0
- package/node_modules/path-scurry/README.md +636 -0
- package/node_modules/path-scurry/dist/commonjs/index.js +2018 -0
- package/node_modules/path-scurry/dist/commonjs/package.json +3 -0
- package/node_modules/path-scurry/dist/esm/index.js +1983 -0
- package/node_modules/path-scurry/dist/esm/package.json +3 -0
- package/node_modules/path-scurry/node_modules/lru-cache/LICENSE.md +55 -0
- package/node_modules/path-scurry/node_modules/lru-cache/README.md +469 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel.js +7 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.js +1726 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/perf.js +10 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/diagnostics-channel-cjs.d.cts.map +1 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +7 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js +1726 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel.js +9 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.js +1726 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/perf.js +10 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/perf.js +10 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +4 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.js +1722 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/perf.js +7 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/diagnostics-channel-esm.d.mts.map +1 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/diagnostics-channel.js +19 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js +1722 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +6 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.js +1722 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/perf.js +7 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/perf.js +7 -0
- package/node_modules/path-scurry/node_modules/lru-cache/package.json +154 -0
- package/node_modules/path-scurry/package.json +72 -0
- 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/node_modules/run/README.md +109 -18
- package/node_modules/run/THIRD_PARTY_NOTICES.md +11 -11
- package/node_modules/run/dist/continuation-validation.js +116 -1
- package/node_modules/run/dist/errors.js +12 -2
- package/node_modules/run/dist/host-function-invocation.js +2 -1
- package/node_modules/run/dist/run.js +30 -4
- package/node_modules/run/dist/runtime/guest-serde-source.js +1 -1
- package/node_modules/run/dist/runtime/guest-sources.js +214 -56
- package/node_modules/run/dist/runtime/manager.js +575 -116
- package/node_modules/run/dist/runtime/max-workers.js +8 -4
- package/node_modules/run/dist/runtime/protocol-validation.js +20 -7
- package/node_modules/run/dist/runtime/sync-bridge-protocol.js +135 -0
- package/node_modules/run/dist/runtime/worker-source.js +1 -1
- package/node_modules/run/dist/utils/options.js +7 -0
- package/node_modules/run/dist/utils/promise-with-resolvers.js +13 -1
- package/node_modules/run/dist/utils/serde.js +1 -7
- package/node_modules/run/dist/utils/source-cache.js +83 -13
- package/node_modules/run/package.json +6 -4
- package/node_modules/systeminformation/LICENSE +20 -0
- package/node_modules/systeminformation/README.md +1251 -0
- package/node_modules/systeminformation/lib/audio.js +335 -0
- package/node_modules/systeminformation/lib/battery.js +334 -0
- package/node_modules/systeminformation/lib/bluetooth.js +315 -0
- package/node_modules/systeminformation/lib/bluetoothVendors.js +1138 -0
- package/node_modules/systeminformation/lib/cli.js +100 -0
- package/node_modules/systeminformation/lib/cpu.js +2285 -0
- package/node_modules/systeminformation/lib/docker.js +791 -0
- package/node_modules/systeminformation/lib/dockerSocket.js +117 -0
- package/node_modules/systeminformation/lib/filesystem.js +1853 -0
- package/node_modules/systeminformation/lib/graphics.js +1317 -0
- package/node_modules/systeminformation/lib/index.js +520 -0
- package/node_modules/systeminformation/lib/internet.js +265 -0
- package/node_modules/systeminformation/lib/memory.js +622 -0
- package/node_modules/systeminformation/lib/network.js +2008 -0
- package/node_modules/systeminformation/lib/osinfo.js +1290 -0
- package/node_modules/systeminformation/lib/printer.js +209 -0
- package/node_modules/systeminformation/lib/processes.js +1459 -0
- package/node_modules/systeminformation/lib/system.js +855 -0
- package/node_modules/systeminformation/lib/usb.js +309 -0
- package/node_modules/systeminformation/lib/users.js +412 -0
- package/node_modules/systeminformation/lib/util.js +2833 -0
- package/node_modules/systeminformation/lib/virtualbox.js +116 -0
- package/node_modules/systeminformation/lib/wifi.js +839 -0
- package/node_modules/systeminformation/package.json +102 -0
- package/node_modules/undici/docs/docs/api/Client.md +4 -0
- package/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +3 -2
- package/node_modules/undici/docs/docs/api/EventSource.md +4 -0
- package/node_modules/undici/lib/cache/memory-cache-store.js +1 -1
- package/node_modules/undici/lib/dispatcher/agent.js +7 -2
- package/node_modules/undici/lib/dispatcher/balanced-pool.js +1 -1
- package/node_modules/undici/lib/dispatcher/client-h1.js +12 -4
- package/node_modules/undici/lib/dispatcher/client-h2.js +43 -3
- package/node_modules/undici/lib/dispatcher/client.js +3 -2
- package/node_modules/undici/lib/dispatcher/dispatcher-base.js +13 -1
- package/node_modules/undici/lib/dispatcher/dispatcher.js +10 -0
- package/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +10 -3
- package/node_modules/undici/lib/dispatcher/proxy-agent.js +1 -1
- package/node_modules/undici/lib/dispatcher/round-robin-pool.js +1 -1
- package/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +3 -1
- package/node_modules/undici/lib/handler/cache-handler.js +8 -0
- package/node_modules/undici/lib/handler/decorator-handler.js +7 -1
- package/node_modules/undici/lib/handler/deduplication-handler.js +12 -6
- package/node_modules/undici/lib/handler/redirect-handler.js +8 -0
- package/node_modules/undici/lib/handler/retry-handler.js +83 -11
- package/node_modules/undici/lib/interceptor/dump.js +1 -1
- package/node_modules/undici/lib/mock/mock-agent.js +13 -1
- package/node_modules/undici/lib/mock/mock-utils.js +11 -10
- package/node_modules/undici/lib/web/cookies/parse.js +4 -2
- package/node_modules/undici/lib/web/eventsource/eventsource-stream.js +28 -1
- package/node_modules/undici/lib/web/eventsource/eventsource.js +4 -1
- package/node_modules/undici/lib/web/fetch/request.js +2 -3
- package/node_modules/undici/package.json +3 -3
- package/node_modules/zod/README.md +27 -0
- package/node_modules/zod/compile.cjs +77 -0
- package/node_modules/zod/compile.js +52 -0
- package/node_modules/zod/index.cjs +2 -2
- package/node_modules/zod/index.js +5 -2
- package/node_modules/zod/package.json +13 -2
- package/node_modules/zod/v3/ZodError.cjs +22 -12
- package/node_modules/zod/v3/ZodError.js +22 -12
- package/node_modules/zod/v3/types.cjs +7 -5
- package/node_modules/zod/v3/types.js +7 -5
- package/node_modules/zod/v4/classic/checks.cjs +2 -1
- package/node_modules/zod/v4/classic/checks.js +1 -1
- package/node_modules/zod/v4/classic/deep-partial.cjs +39 -0
- package/node_modules/zod/v4/classic/deep-partial.js +13 -0
- package/node_modules/zod/v4/classic/errors.cjs +43 -34
- package/node_modules/zod/v4/classic/errors.js +43 -34
- package/node_modules/zod/v4/classic/external.cjs +30 -27
- package/node_modules/zod/v4/classic/external.js +5 -8
- package/node_modules/zod/v4/classic/from-json-schema.cjs +136 -75
- package/node_modules/zod/v4/classic/from-json-schema.js +136 -75
- package/node_modules/zod/v4/classic/in-out.cjs +63 -0
- package/node_modules/zod/v4/classic/in-out.js +36 -0
- package/node_modules/zod/v4/classic/index.cjs +2 -2
- package/node_modules/zod/v4/classic/index.js +2 -2
- package/node_modules/zod/v4/classic/iso.cjs +11 -22
- package/node_modules/zod/v4/classic/iso.js +2 -17
- package/node_modules/zod/v4/classic/parse.cjs +4 -1
- package/node_modules/zod/v4/classic/parse.js +1 -0
- package/node_modules/zod/v4/classic/schemas.cjs +498 -398
- package/node_modules/zod/v4/classic/schemas.js +492 -396
- package/node_modules/zod/v4/core/api.cjs +23 -4
- package/node_modules/zod/v4/core/api.js +21 -4
- package/node_modules/zod/v4/core/checks.cjs +37 -31
- package/node_modules/zod/v4/core/checks.js +37 -31
- package/node_modules/zod/v4/core/compile.cjs +1813 -0
- package/node_modules/zod/v4/core/compile.js +1783 -0
- package/node_modules/zod/v4/core/core.cjs +81 -18
- package/node_modules/zod/v4/core/core.js +82 -19
- package/node_modules/zod/v4/core/doc.cjs +5 -7
- package/node_modules/zod/v4/core/doc.js +5 -7
- package/node_modules/zod/v4/core/errors.cjs +110 -25
- package/node_modules/zod/v4/core/errors.js +110 -25
- package/node_modules/zod/v4/core/index.cjs +5 -1
- package/node_modules/zod/v4/core/index.js +3 -0
- package/node_modules/zod/v4/core/json-schema-generator.cjs +4 -0
- package/node_modules/zod/v4/core/json-schema-generator.js +4 -0
- package/node_modules/zod/v4/core/json-schema-processors.cjs +264 -95
- package/node_modules/zod/v4/core/json-schema-processors.js +243 -97
- package/node_modules/zod/v4/core/memoizer.cjs +268 -0
- package/node_modules/zod/v4/core/memoizer.js +261 -0
- package/node_modules/zod/v4/core/parse.cjs +96 -34
- package/node_modules/zod/v4/core/parse.js +94 -33
- package/node_modules/zod/v4/core/regexes.cjs +27 -15
- package/node_modules/zod/v4/core/regexes.js +24 -13
- package/node_modules/zod/v4/core/registries.js +2 -2
- package/node_modules/zod/v4/core/schemas.cjs +537 -326
- package/node_modules/zod/v4/core/schemas.js +526 -325
- package/node_modules/zod/v4/core/to-json-schema.cjs +242 -39
- package/node_modules/zod/v4/core/to-json-schema.js +241 -39
- package/node_modules/zod/v4/core/util.cjs +212 -31
- package/node_modules/zod/v4/core/util.js +202 -30
- package/node_modules/zod/v4/core/versions.cjs +2 -2
- package/node_modules/zod/v4/core/versions.js +2 -2
- package/node_modules/zod/v4/core/visit.cjs +195 -0
- package/node_modules/zod/v4/core/visit.js +169 -0
- package/node_modules/zod/v4/index.cjs +15 -5
- package/node_modules/zod/v4/index.js +3 -2
- package/node_modules/zod/v4/locales/ar.cjs +3 -0
- package/node_modules/zod/v4/locales/ar.js +3 -0
- package/node_modules/zod/v4/locales/az.cjs +3 -0
- package/node_modules/zod/v4/locales/az.js +3 -0
- package/node_modules/zod/v4/locales/be.cjs +10 -0
- package/node_modules/zod/v4/locales/be.js +10 -0
- package/node_modules/zod/v4/locales/bg.cjs +3 -0
- package/node_modules/zod/v4/locales/bg.js +3 -0
- package/node_modules/zod/v4/locales/bn.cjs +138 -0
- package/node_modules/zod/v4/locales/bn.js +111 -0
- package/node_modules/zod/v4/locales/ca.cjs +3 -0
- package/node_modules/zod/v4/locales/ca.js +3 -0
- package/node_modules/zod/v4/locales/ckb.cjs +158 -0
- package/node_modules/zod/v4/locales/ckb.js +131 -0
- package/node_modules/zod/v4/locales/cs.cjs +3 -0
- package/node_modules/zod/v4/locales/cs.js +3 -0
- package/node_modules/zod/v4/locales/da.cjs +5 -2
- package/node_modules/zod/v4/locales/da.js +5 -2
- package/node_modules/zod/v4/locales/de.cjs +3 -0
- package/node_modules/zod/v4/locales/de.js +3 -0
- package/node_modules/zod/v4/locales/el.cjs +1 -0
- package/node_modules/zod/v4/locales/el.js +1 -0
- package/node_modules/zod/v4/locales/en.cjs +14 -4
- package/node_modules/zod/v4/locales/en.js +14 -4
- package/node_modules/zod/v4/locales/eo.cjs +3 -0
- package/node_modules/zod/v4/locales/eo.js +3 -0
- package/node_modules/zod/v4/locales/es.cjs +2 -0
- package/node_modules/zod/v4/locales/es.js +2 -0
- package/node_modules/zod/v4/locales/fa.cjs +3 -0
- package/node_modules/zod/v4/locales/fa.js +3 -0
- package/node_modules/zod/v4/locales/fi.cjs +3 -0
- package/node_modules/zod/v4/locales/fi.js +3 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +3 -0
- package/node_modules/zod/v4/locales/fr-CA.js +3 -0
- package/node_modules/zod/v4/locales/fr.cjs +16 -14
- package/node_modules/zod/v4/locales/fr.js +16 -14
- package/node_modules/zod/v4/locales/gu.cjs +138 -0
- package/node_modules/zod/v4/locales/gu.js +111 -0
- package/node_modules/zod/v4/locales/he.cjs +5 -0
- package/node_modules/zod/v4/locales/he.js +5 -0
- package/node_modules/zod/v4/locales/hi.cjs +136 -0
- package/node_modules/zod/v4/locales/hi.js +109 -0
- package/node_modules/zod/v4/locales/hr.cjs +2 -0
- package/node_modules/zod/v4/locales/hr.js +2 -0
- package/node_modules/zod/v4/locales/hu.cjs +3 -0
- package/node_modules/zod/v4/locales/hu.js +3 -0
- package/node_modules/zod/v4/locales/hy.cjs +9 -0
- package/node_modules/zod/v4/locales/hy.js +9 -0
- package/node_modules/zod/v4/locales/id.cjs +3 -0
- package/node_modules/zod/v4/locales/id.js +3 -0
- package/node_modules/zod/v4/locales/index.cjs +22 -2
- package/node_modules/zod/v4/locales/index.js +10 -0
- package/node_modules/zod/v4/locales/is.cjs +3 -0
- package/node_modules/zod/v4/locales/is.js +3 -0
- package/node_modules/zod/v4/locales/it.cjs +3 -0
- package/node_modules/zod/v4/locales/it.js +3 -0
- package/node_modules/zod/v4/locales/ja.cjs +3 -0
- package/node_modules/zod/v4/locales/ja.js +3 -0
- package/node_modules/zod/v4/locales/ka.cjs +3 -0
- package/node_modules/zod/v4/locales/ka.js +3 -0
- package/node_modules/zod/v4/locales/km.cjs +3 -0
- package/node_modules/zod/v4/locales/km.js +3 -0
- package/node_modules/zod/v4/locales/kn.cjs +141 -0
- package/node_modules/zod/v4/locales/kn.js +114 -0
- package/node_modules/zod/v4/locales/ko.cjs +3 -0
- package/node_modules/zod/v4/locales/ko.js +3 -0
- package/node_modules/zod/v4/locales/lt.cjs +2 -0
- package/node_modules/zod/v4/locales/lt.js +2 -0
- package/node_modules/zod/v4/locales/mk.cjs +3 -0
- package/node_modules/zod/v4/locales/mk.js +3 -0
- package/node_modules/zod/v4/locales/ms.cjs +3 -0
- package/node_modules/zod/v4/locales/ms.js +3 -0
- package/node_modules/zod/v4/locales/ne.cjs +136 -0
- package/node_modules/zod/v4/locales/ne.js +109 -0
- package/node_modules/zod/v4/locales/nl.cjs +3 -0
- package/node_modules/zod/v4/locales/nl.js +3 -0
- package/node_modules/zod/v4/locales/nn.cjs +138 -0
- package/node_modules/zod/v4/locales/nn.js +111 -0
- package/node_modules/zod/v4/locales/no.cjs +5 -2
- package/node_modules/zod/v4/locales/no.js +5 -2
- package/node_modules/zod/v4/locales/ota.cjs +3 -0
- package/node_modules/zod/v4/locales/ota.js +3 -0
- package/node_modules/zod/v4/locales/pl.cjs +3 -0
- package/node_modules/zod/v4/locales/pl.js +3 -0
- package/node_modules/zod/v4/locales/ps.cjs +3 -0
- package/node_modules/zod/v4/locales/ps.js +3 -0
- package/node_modules/zod/v4/locales/pt-BR.cjs +168 -0
- package/node_modules/zod/v4/locales/pt-BR.js +141 -0
- package/node_modules/zod/v4/locales/pt.cjs +87 -55
- package/node_modules/zod/v4/locales/pt.js +87 -55
- package/node_modules/zod/v4/locales/ro.cjs +1 -0
- package/node_modules/zod/v4/locales/ro.js +1 -0
- package/node_modules/zod/v4/locales/ru.cjs +10 -0
- package/node_modules/zod/v4/locales/ru.js +10 -0
- package/node_modules/zod/v4/locales/sk.cjs +141 -0
- package/node_modules/zod/v4/locales/sk.js +114 -0
- package/node_modules/zod/v4/locales/sl.cjs +3 -0
- package/node_modules/zod/v4/locales/sl.js +3 -0
- package/node_modules/zod/v4/locales/sv.cjs +5 -2
- package/node_modules/zod/v4/locales/sv.js +5 -2
- package/node_modules/zod/v4/locales/ta.cjs +3 -0
- package/node_modules/zod/v4/locales/ta.js +3 -0
- package/node_modules/zod/v4/locales/th.cjs +3 -0
- package/node_modules/zod/v4/locales/th.js +3 -0
- package/node_modules/zod/v4/locales/tk.cjs +132 -0
- package/node_modules/zod/v4/locales/tk.js +105 -0
- package/node_modules/zod/v4/locales/tr.cjs +3 -0
- package/node_modules/zod/v4/locales/tr.js +3 -0
- package/node_modules/zod/v4/locales/uk.cjs +3 -0
- package/node_modules/zod/v4/locales/uk.js +3 -0
- package/node_modules/zod/v4/locales/ur.cjs +3 -0
- package/node_modules/zod/v4/locales/ur.js +3 -0
- package/node_modules/zod/v4/locales/uz.cjs +1 -0
- package/node_modules/zod/v4/locales/uz.js +1 -0
- package/node_modules/zod/v4/locales/vi.cjs +3 -0
- package/node_modules/zod/v4/locales/vi.js +3 -0
- package/node_modules/zod/v4/locales/yo.cjs +3 -0
- package/node_modules/zod/v4/locales/yo.js +3 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +3 -0
- package/node_modules/zod/v4/locales/zh-CN.js +3 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +3 -0
- package/node_modules/zod/v4/locales/zh-TW.js +3 -0
- package/node_modules/zod/v4/mini/checks.cjs +2 -1
- package/node_modules/zod/v4/mini/checks.js +1 -1
- package/node_modules/zod/v4/mini/deep-partial.cjs +39 -0
- package/node_modules/zod/v4/mini/deep-partial.js +13 -0
- package/node_modules/zod/v4/mini/external.cjs +12 -1
- package/node_modules/zod/v4/mini/external.js +3 -1
- package/node_modules/zod/v4/mini/in-out.cjs +63 -0
- package/node_modules/zod/v4/mini/in-out.js +36 -0
- package/node_modules/zod/v4/mini/parse.cjs +3 -1
- package/node_modules/zod/v4/mini/parse.js +1 -1
- package/node_modules/zod/v4/mini/schemas.cjs +75 -47
- package/node_modules/zod/v4/mini/schemas.js +71 -45
- package/package.json +3 -4
- package/node_modules/@ai-sdk/code-mode/dist/run-code-mode.js +0 -549
- package/node_modules/@ai-sdk/code-mode/package.json +0 -78
- package/node_modules/@ai-sdk/gateway/CHANGELOG.md +0 -3067
- package/node_modules/@ai-sdk/gateway/dist/index.js +0 -3208
- package/node_modules/@ai-sdk/gateway/docs/00-ai-gateway.mdx +0 -1297
- package/node_modules/@ai-sdk/gateway/package.json +0 -80
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/CHANGELOG.md +0 -2444
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/README.md +0 -1
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/dist/index.js +0 -4295
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/package.json +0 -82
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/src/to-json-schema/zod3-to-json-schema/LICENSE +0 -16
- package/node_modules/@ai-sdk/open-responses/node_modules/@ai-sdk/provider-utils/src/to-json-schema/zod3-to-json-schema/README.md +0 -24
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/LICENSE +0 -21
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/README.md +0 -741
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Agent.md +0 -84
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/BalancedPool.md +0 -99
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/CacheStorage.md +0 -30
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/CacheStore.md +0 -164
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Client.md +0 -288
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/ClientStats.md +0 -27
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Connector.md +0 -115
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/ContentType.md +0 -57
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Cookies.md +0 -128
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Debug.md +0 -62
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +0 -315
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Dispatcher.md +0 -1392
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +0 -159
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Errors.md +0 -49
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/EventSource.md +0 -45
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Fetch.md +0 -60
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/GlobalInstallation.md +0 -139
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/H2CClient.md +0 -263
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockAgent.md +0 -603
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockCallHistory.md +0 -197
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +0 -43
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockClient.md +0 -81
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockErrors.md +0 -12
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/MockPool.md +0 -555
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Pool.md +0 -84
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/PoolStats.md +0 -35
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/ProxyAgent.md +0 -229
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RedirectHandler.md +0 -93
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RetryAgent.md +0 -50
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RetryHandler.md +0 -118
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/RoundRobinPool.md +0 -145
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/SnapshotAgent.md +0 -616
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +0 -275
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/Util.md +0 -25
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/WebSocket.md +0 -141
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/api/api-lifecycle.md +0 -91
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/client-certificate.md +0 -64
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/crawling.md +0 -58
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/mocking-request.md +0 -190
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/proxy.md +0 -127
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +0 -224
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/docs/docs/best-practices/writing-tests.md +0 -63
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/index-fetch.js +0 -65
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/index.js +0 -234
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/abort-signal.js +0 -59
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-connect.js +0 -110
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-pipeline.js +0 -252
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-request.js +0 -214
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-stream.js +0 -209
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/api-upgrade.js +0 -111
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/index.js +0 -7
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/api/readable.js +0 -580
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/cache/memory-cache-store.js +0 -279
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/cache/sqlite-cache-store.js +0 -467
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/connect.js +0 -153
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/constants.js +0 -143
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/diagnostics.js +0 -227
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/errors.js +0 -477
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/request.js +0 -464
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/socks5-client.js +0 -422
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/socks5-utils.js +0 -212
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/symbols.js +0 -75
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/tree.js +0 -160
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/core/util.js +0 -992
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/agent.js +0 -158
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/balanced-pool.js +0 -219
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/client-h1.js +0 -1731
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/client-h2.js +0 -995
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/client.js +0 -664
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/dispatcher-base.js +0 -184
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/dispatcher.js +0 -48
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +0 -146
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/fixed-queue.js +0 -135
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/h2c-client.js +0 -51
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/pool-base.js +0 -214
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/pool.js +0 -118
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/proxy-agent.js +0 -319
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/retry-agent.js +0 -35
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/round-robin-pool.js +0 -137
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +0 -260
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/encoding/index.js +0 -33
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/global.js +0 -59
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/cache-handler.js +0 -760
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/cache-revalidation-handler.js +0 -124
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/decorator-handler.js +0 -67
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/deduplication-handler.js +0 -460
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/redirect-handler.js +0 -238
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/retry-handler.js +0 -418
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/unwrap-handler.js +0 -106
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/handler/wrap-handler.js +0 -105
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/cache.js +0 -602
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/decompress.js +0 -259
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/deduplicate.js +0 -117
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/dns.js +0 -571
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/dump.js +0 -112
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/redirect.js +0 -21
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/response-error.js +0 -95
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/interceptor/retry.js +0 -19
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/.gitkeep +0 -0
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/constants.js +0 -531
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/llhttp-wasm.js +0 -15
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +0 -15
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/llhttp/utils.js +0 -12
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-agent.js +0 -232
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-call-history.js +0 -248
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-client.js +0 -68
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-errors.js +0 -29
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-interceptor.js +0 -209
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-pool.js +0 -68
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-symbols.js +0 -32
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/mock-utils.js +0 -486
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/pending-interceptors-formatter.js +0 -43
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/snapshot-agent.js +0 -353
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/snapshot-recorder.js +0 -588
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/mock/snapshot-utils.js +0 -158
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/cache.js +0 -676
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/date.js +0 -670
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/promise.js +0 -28
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/runtime-features.js +0 -124
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/stats.js +0 -32
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/util/timers.js +0 -425
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cache/cache.js +0 -864
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cache/cachestorage.js +0 -152
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cache/util.js +0 -45
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/constants.js +0 -12
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/index.js +0 -199
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/parse.js +0 -314
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/cookies/util.js +0 -352
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/eventsource/eventsource-stream.js +0 -399
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/eventsource/eventsource.js +0 -501
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/eventsource/util.js +0 -29
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/LICENSE +0 -21
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/body.js +0 -509
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/constants.js +0 -131
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/data-url.js +0 -596
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/formdata-parser.js +0 -586
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/formdata.js +0 -259
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/global.js +0 -40
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/headers.js +0 -719
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/index.js +0 -2413
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/request.js +0 -1115
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/response.js +0 -641
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/fetch/util.js +0 -1522
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/infra/index.js +0 -229
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/subresource-integrity/Readme.md +0 -9
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +0 -307
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/webidl/index.js +0 -1006
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/connection.js +0 -329
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/constants.js +0 -126
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/events.js +0 -331
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/frame.js +0 -133
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/permessage-deflate.js +0 -100
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/receiver.js +0 -507
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/sender.js +0 -109
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/stream/websocketerror.js +0 -104
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/stream/websocketstream.js +0 -498
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/util.js +0 -347
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/lib/web/websocket/websocket.js +0 -758
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/package.json +0 -152
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/scripts/strip-comments.js +0 -10
- package/node_modules/@ai-sdk/open-responses/node_modules/undici/types/README.md +0 -6
- package/node_modules/@ai-sdk/provider/CHANGELOG.md +0 -1218
- package/node_modules/@ai-sdk/provider/package.json +0 -63
- package/node_modules/@formatjs/icu-messageformat-parser/index.js +0 -2173
- package/node_modules/@formatjs/icu-messageformat-parser/manipulator.js +0 -207
- package/node_modules/@formatjs/icu-messageformat-parser/no-parser.js +0 -160
- package/node_modules/@formatjs/icu-messageformat-parser/package.json +0 -21
- package/node_modules/@formatjs/icu-messageformat-parser/printer.js +0 -224
- package/node_modules/@maka/core/dist/task-ledger.js +0 -797
- package/node_modules/@maka/runtime/dist/active-tool-result-prune.js +0 -334
- package/node_modules/@maka/runtime/dist/active-tool-result-working-set.js +0 -218
- package/node_modules/@maka/runtime/dist/archive-read-tool.js +0 -92
- package/node_modules/@maka/runtime/dist/sandbox/diagnostics.js +0 -285
- package/node_modules/@maka/runtime/dist/system-prompt/sandbox-context-prompt.js +0 -77
- package/node_modules/@maka/runtime/dist/system-prompt/session-environment-prompt.js +0 -47
- 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/node_modules/@slack/types/dist/events/index.js +0 -43
- package/node_modules/@maka/runtime/node_modules/@slack/types/package.json +0 -47
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/README.md +0 -390
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/methods.js +0 -1610
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/ChatAppendStreamResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/ChatStartStreamResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/ChatStopStreamResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/PinsListResponse.js +0 -37
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SearchAllResponse.js +0 -82
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SearchFilesResponse.js +0 -63
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsAccessDeleteResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsAccessSetResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsCreateResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadGetResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsDownloadStartResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsCreateResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteMultipleResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsDeleteResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsInfoResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsListResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsItemsUpdateResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/SlackListsUpdateResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedAddResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedListResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedRemoveResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/dist/types/response/WorkflowsFeaturedSetResponse.js +0 -3
- package/node_modules/@maka/runtime/node_modules/@slack/web-api/package.json +0 -71
- 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/artifact-metadata-repository.js +0 -19
- package/node_modules/@maka/storage/dist/artifact-storage-layout.js +0 -26
- package/node_modules/@maka/storage/dist/provider-request-capture-artifact.js +0 -31
- package/node_modules/@maka/storage/dist/task-ledger-authority.js +0 -121
- package/node_modules/@maka/storage/dist/task-ledger-store-internal.js +0 -32
- package/node_modules/@maka/storage/dist/task-ledger-store.js +0 -663
- package/node_modules/ai/CHANGELOG.md +0 -9971
- package/node_modules/ai/dist/index.js +0 -18513
- package/node_modules/ai/dist/internal/index.js +0 -3680
- package/node_modules/ai/docs/02-foundations/02-providers-and-models.mdx +0 -179
- package/node_modules/ai/docs/03-agents/04-loop-control.mdx +0 -515
- package/node_modules/ai/docs/03-agents/06-policy-tool-approvals.mdx +0 -412
- package/node_modules/ai/docs/03-agents/06-tool-approvals.mdx +0 -326
- package/node_modules/ai/docs/03-agents/07-workflow-agent.mdx +0 -718
- package/node_modules/ai/docs/03-ai-sdk-core/10-generating-structured-data.mdx +0 -513
- package/node_modules/ai/docs/03-ai-sdk-core/15-tools-and-tool-calling.mdx +0 -1509
- package/node_modules/ai/docs/03-ai-sdk-core/16-mcp-tools.mdx +0 -617
- package/node_modules/ai/docs/03-ai-sdk-core/35-image-generation.mdx +0 -344
- package/node_modules/ai/docs/03-ai-sdk-core/36-transcription.mdx +0 -332
- package/node_modules/ai/docs/03-ai-sdk-core/37-speech.mdx +0 -180
- package/node_modules/ai/docs/03-ai-sdk-core/39-file-uploads.mdx +0 -155
- package/node_modules/ai/docs/03-ai-sdk-core/50-error-handling.mdx +0 -149
- package/node_modules/ai/docs/03-ai-sdk-core/60-telemetry.mdx +0 -830
- package/node_modules/ai/docs/03-ai-sdk-core/index.mdx +0 -132
- package/node_modules/ai/docs/03-ai-sdk-harnesses/02-harness-agent.mdx +0 -495
- package/node_modules/ai/docs/03-ai-sdk-harnesses/04-skills.mdx +0 -65
- package/node_modules/ai/docs/03-ai-sdk-harnesses/05-harness-adapters.mdx +0 -45
- package/node_modules/ai/docs/04-ai-sdk-ui/03-chatbot-tool-usage.mdx +0 -798
- package/node_modules/ai/docs/04-ai-sdk-ui/20-streaming-data.mdx +0 -401
- package/node_modules/ai/docs/04-ai-sdk-ui/21-transport.mdx +0 -212
- package/node_modules/ai/docs/04-ai-sdk-ui/50-stream-protocol.mdx +0 -578
- package/node_modules/ai/docs/06-advanced/04-caching.mdx +0 -175
- package/node_modules/ai/docs/06-advanced/11-secure-url-fetching.mdx +0 -111
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/01-generate-text.mdx +0 -3253
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/02-stream-text.mdx +0 -4261
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/05-embed.mdx +0 -304
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/06-embed-many.mdx +0 -302
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/06-rerank.mdx +0 -317
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/10-generate-image.mdx +0 -252
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/14-upload-file.mdx +0 -92
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/16-tool-loop-agent.mdx +0 -1102
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/28-output.mdx +0 -342
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/31-ui-message.mdx +0 -268
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/80-smooth-stream.mdx +0 -145
- package/node_modules/ai/docs/07-reference/01-ai-sdk-core/index.mdx +0 -225
- package/node_modules/ai/docs/07-reference/02-ai-sdk-ui/01-use-chat.mdx +0 -493
- package/node_modules/ai/docs/07-reference/02-ai-sdk-ui/31-convert-to-model-messages.mdx +0 -256
- package/node_modules/ai/docs/07-reference/02-ai-sdk-ui/40-create-ui-message-stream.mdx +0 -166
- package/node_modules/ai/docs/07-reference/02-ai-sdk-ui/41-create-ui-message-stream-response.mdx +0 -120
- package/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/01-workflow-agent.mdx +0 -954
- package/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/02-workflow-chat-transport.mdx +0 -347
- package/node_modules/ai/docs/07-reference/04-ai-sdk-workflow/index.mdx +0 -26
- package/node_modules/ai/docs/07-reference/05-ai-sdk-errors/ai-invalid-argument-error.mdx +0 -26
- package/node_modules/ai/docs/07-reference/05-ai-sdk-errors/ai-no-image-generated-error.mdx +0 -36
- package/node_modules/ai/docs/07-reference/05-ai-sdk-errors/index.mdx +0 -41
- package/node_modules/ai/package.json +0 -117
- package/node_modules/intl-messageformat/intl-messageformat.iife.js +0 -2807
- package/node_modules/intl-messageformat/package.json +0 -40
- package/packages/eval/dist/attempt-store.js +0 -138
- package/packages/eval/dist/cli.js +0 -119
- package/packages/eval/dist/experiment-directory.js +0 -59
- package/packages/eval/dist/experiment.js +0 -49
- package/packages/eval/dist/external-subject.js +0 -488
- package/packages/eval/dist/harbor-external-subject.js +0 -929
- package/packages/eval/dist/harbor-maka-subject.js +0 -83
- package/packages/eval/dist/harness-environment.js +0 -80
- package/packages/eval/dist/harness-executor.js +0 -1013
- package/packages/eval/dist/index.js +0 -28
- package/packages/eval/dist/install-preflight.js +0 -201
- package/packages/eval/dist/maka-artifacts.js +0 -126
- package/packages/eval/dist/maka-runtime-policy.js +0 -42
- package/packages/eval/dist/maka-subject.js +0 -268
- package/packages/eval/dist/metering-checkpoint.js +0 -80
- package/packages/eval/dist/provider-admission.js +0 -39
- package/packages/eval/dist/provider-metering.js +0 -67
- package/packages/eval/dist/provider-web-tool-surface.js +0 -74
- package/packages/eval/dist/relay-result-frame.js +0 -38
- package/packages/eval/dist/result.js +0 -94
- package/packages/eval/dist/runner.js +0 -290
- package/packages/eval/dist/spec.js +0 -135
- package/packages/eval/dist/toolchain-verification.js +0 -130
- package/packages/eval/harbor/deepseek-codex-models.json +0 -69
- package/packages/eval/harbor/deepseek-harness-profile/cordis.patch.yml +0 -140
- package/packages/eval/harbor/deepseek-harness-profile/cordis.yml +0 -18
- package/packages/eval/harbor/deepseek-harness-profile/package.json +0 -10
- package/packages/eval/harbor/docker-compose-egress-proxy.yaml +0 -57
- package/packages/eval/harbor/egress-proxy/Dockerfile +0 -25
- package/packages/eval/harbor/egress-proxy/entrypoint.sh +0 -62
- package/packages/eval/harbor/egress-proxy/network-policy +0 -148
- package/packages/eval/harbor/egress_filter.py +0 -435
- package/packages/eval/harbor/eval_framework.py +0 -40
- package/packages/eval/harbor/relay_agent.py +0 -686
- package/packages/eval/harbor/run_trial.py +0 -223
- package/packages/eval/package.json +0 -20
- /package/node_modules/@ai-sdk/{code-mode → anthropic/node_modules/@ai-sdk/provider}/LICENSE +0 -0
- /package/node_modules/@ai-sdk/{provider → anthropic/node_modules/@ai-sdk/provider}/README.md +0 -0
- /package/node_modules/@ai-sdk/{provider → anthropic/node_modules/@ai-sdk/provider}/dist/index.js +0 -0
- /package/node_modules/@ai-sdk/{gateway → cohere/node_modules/@ai-sdk/provider}/LICENSE +0 -0
- /package/node_modules/@ai-sdk/{provider → google/node_modules/@ai-sdk/provider}/LICENSE +0 -0
- /package/node_modules/{ai → @ai-sdk/openai-compatible/node_modules/@ai-sdk/provider}/LICENSE +0 -0
- /package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/LICENSE.md +0 -0
- /package/node_modules/{@formatjs → @maka/core/node_modules/@formatjs}/icu-messageformat-parser/README.md +0 -0
- /package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/LICENSE.md +0 -0
- /package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/README.md +0 -0
- /package/node_modules/{intl-messageformat → @maka/core/node_modules/intl-messageformat}/index.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/README.md +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/approval-continuation.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/approval.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/code-mode-tool.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/continuation-capability.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/direct-tool-call.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/errors.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/host-interrupt.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/index.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/interrupt-continuation.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/tool-invocation.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/tool-prompt.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/types.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/dist/utils/serialization.js +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/code-mode/src/tsconfig.json +0 -0
- /package/node_modules/{@ai-sdk → @maka/runtime/node_modules/@ai-sdk}/gateway/README.md +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/README.md +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/00-introduction/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-foundations/01-overview.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-foundations/03-prompts.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-foundations/04-tools.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-foundations/05-streaming.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-foundations/06-provider-options.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-foundations/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/00-choosing-a-provider.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/01-navigating-the-library.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/02-nextjs-app-router.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/03-nextjs-pages-router.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/04-svelte.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/05-nuxt.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/06-nodejs.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/07-expo.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/08-tanstack-start.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/09-coding-agents.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/02-getting-started/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/01-overview.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/02-building-agents.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/03-workflows.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/05-configuring-call-options.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/06-memory.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/06-subagents.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/08-terminal-ui.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-agents/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/01-overview.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/05-generating-text.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/17-mcp-apps.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/17-runtime-and-tool-context.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/18-code-mode.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/20-prompt-engineering.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/25-settings.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/26-reasoning.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/30-embeddings.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/31-reranking.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/36-realtime.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/36-translation.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/38-video-generation.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/40-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/41-skill-uploads.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/45-provider-management.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/55-testing.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/65-devtools.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-core/65-lifecycle-callbacks.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-harnesses/01-overview.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-harnesses/03-tools.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-harnesses/06-workflow-utilities.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-harnesses/07-ui.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-harnesses/08-terminal-ui.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/03-ai-sdk-harnesses/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/01-overview.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/02-chatbot.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/03-chatbot-message-persistence.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/03-chatbot-resume-streams.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/04-generative-user-interfaces.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/05-completion.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/08-object-generation.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/21-error-handling.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/24-reading-ui-message-streams.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/25-message-metadata.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/04-ai-sdk-ui/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/01-overview.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/02-streaming-react-components.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/03-generative-ui-state.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/03-saving-and-restoring-states.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/04-multistep-interfaces.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/05-streaming-values.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/06-loading-state.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/08-error-handling.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/09-authentication.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/10-migrating-to-ui.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/05-ai-sdk-rsc/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/01-prompt-engineering.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/02-stopping-streams.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/03-backpressure.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/05-multiple-streamables.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/06-rate-limiting.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/07-rendering-ui-with-language-models.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/08-model-as-router.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/09-multistep-interfaces.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/09-sequential-generations.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/10-vercel-deployment-guide.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/06-advanced/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/11-stream-transcribe.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/11-stream-translate.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/11-transcribe.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/12-generate-speech.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/13-generate-video.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/14-upload-skill.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/15-agent.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/17-create-agent-ui-stream.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/18-create-agent-ui-stream-response.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/18-pipe-agent-ui-stream-to-response.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/20-tool.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/22-dynamic-tool.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/23-create-mcp-client.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/23-get-realtime-tool-definitions.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/24-mcp-apps.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/24-mcp-stdio-transport.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/25-json-schema.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/26-zod-schema.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/27-valibot-schema.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/29-filter-active-tools.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/30-model-message.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/32-validate-ui-messages.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/33-safe-validate-ui-messages.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/34-sandbox.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/40-provider-registry.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/42-custom-provider.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/50-cosine-similarity.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/60-wrap-language-model.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/61-wrap-image-model.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/65-language-model-v2-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/66-extract-reasoning-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/67-simulate-streaming-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/68-default-instructions-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/68-default-settings-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/69-add-tool-input-examples-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/70-extract-json-middleware.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/70-is-step-count.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/71-has-tool-call.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/72-loop-finished.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/75-simulate-readable-stream.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/90-generate-id.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/91-create-id-generator.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/01-ai-sdk-core/92-default-generated-file.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/02-use-completion.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/03-use-object.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/05-use-realtime.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/32-prune-messages.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/42-pipe-ui-message-stream-to-response.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/43-read-ui-message-stream.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/46-infer-ui-tools.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/47-infer-ui-tool.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/48-mcp-app-renderer.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/50-direct-chat-transport.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/02-ai-sdk-ui/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/01-stream-ui.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/02-create-ai.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/03-create-streamable-ui.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/04-create-streamable-value.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/05-read-streamable-value.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/06-get-ai-state.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/07-get-mutable-ai-state.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/08-use-ai-state.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/09-use-actions.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/10-use-ui-state.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/11-use-streamable-value.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/20-render.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/03-ai-sdk-rsc/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-api-call-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-download-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-empty-response-body-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-invalid-data-content-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-invalid-message-role-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-invalid-prompt-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-invalid-response-data-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-invalid-tool-approval-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-invalid-tool-approval-signature-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-invalid-tool-input-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-json-parse-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-load-api-key-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-load-setting-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-message-conversion-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-content-generated-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-object-generated-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-output-generated-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-speech-generated-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-such-model-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-such-provider-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-such-provider-reference-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-such-tool-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-transcript-generated-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-translation-generated-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-no-video-generated-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-retry-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-too-many-embedding-values-for-call-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-tool-call-not-found-for-approval-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-tool-call-repair-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-type-validation-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-ui-message-stream-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/05-ai-sdk-errors/ai-unsupported-functionality-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/06-ai-sdk-tui/01-run-agent-tui.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/06-ai-sdk-tui/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/07-reference/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/00-versioning.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/23-migration-guide-7-0.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/24-migration-guide-6-0.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/25-migration-guide-5-0-data.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/26-migration-guide-5-0.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/27-migration-guide-4-2.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/28-migration-guide-4-1.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/29-migration-guide-4-0.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/36-migration-guide-3-4.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/37-migration-guide-3-3.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/38-migration-guide-3-2.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/39-migration-guide-3-1.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/08-migration-guides/index.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/01-azure-stream-slow.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/03-server-actions-in-client-components.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/04-strange-stream-output.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/05-streamable-ui-errors.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/05-tool-invocation-missing-result.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/06-streaming-not-working-when-deployed.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/06-streaming-not-working-when-proxied.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/06-timeout-on-vercel.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/07-unclosed-streams.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/08-use-chat-failed-to-parse-stream.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/09-client-stream-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/10-use-chat-tools-no-response.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/11-use-chat-custom-request-options.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/12-typescript-performance-zod.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/12-use-chat-an-error-occurred.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/13-repeated-assistant-messages.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/14-stream-abort-handling.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/14-tool-calling-with-structured-outputs.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/15-abort-breaks-resumable-streams.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/15-stream-text-not-working.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/16-streaming-status-delay.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/17-use-chat-stale-body-data.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/18-ontoolcall-type-narrowing.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/19-unsupported-model-version.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/20-no-object-generated-content-filter.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/21-missing-tool-results-error.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/30-model-is-not-assignable-to-type.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/40-typescript-cannot-find-namespace-jsx.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/50-react-maximum-update-depth-exceeded.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/60-jest-cannot-find-module-ai-rsc.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/70-high-memory-usage-with-images.mdx +0 -0
- /package/node_modules/{ai → @maka/runtime/node_modules/ai}/docs/09-troubleshooting/index.mdx +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/LICENSE +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/README.md +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/dist/index.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/logger/package.json +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/LICENSE +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/README.md +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/block-elements.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/blocks.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/composition-objects.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/block-kit/extensions.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/calls.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/chunk.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/common/bot-profile.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/common/status-emoji-display-info.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/dialog.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/app.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/assistant.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/call.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/channel.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/dnd.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/email.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/emoji.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/entity-details-requested.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/file.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/function.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/grid-migration.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/group.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/im.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/invite.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/link-shared.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/member.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/message-metadata.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/message.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/pin.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/reaction.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/shared-channel.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/star.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/steps-from-apps.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/subteam.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/team.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/token.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/events/user.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/index.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/message-attachments.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/message-metadata.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/types/dist/views.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/LICENSE +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/WebClient.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/chat-stream.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/errors.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/file-upload.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/helpers.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/index.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/instrument.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/logger.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/retry-policies.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/helpers.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/analytics.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/apps.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/auth.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/barriers.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/conversations.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/emoji.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/functions.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/inviteRequests.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/roles.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/teams.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/usergroups.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/users.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/admin/workflows.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/api.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/apps.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/assistant.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/auth.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/bookmarks.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/bots.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/calls.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/canvas.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/chat.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/common.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/conversations.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/dialog.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/dnd.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/emoji.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/entity.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/files.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/functions.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/index.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/manifest.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/migration.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/oauth.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/openid.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/pins.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/reactions.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/reminders.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/rtm.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/search.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/slackLists.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/stars.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/team.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/tooling.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/usergroups.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/users.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/views.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/request/workflows.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAnalyticsGetFileResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsActivitiesListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsApproveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsApprovedListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsClearResolutionResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsConfigLookupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsConfigSetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRequestsCancelResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRequestsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRestrictResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsRestrictedListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAppsUninstallResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAuthPolicyAssignEntitiesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAuthPolicyGetEntitiesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminAuthPolicyRemoveEntitiesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminBarriersUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsArchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsBulkArchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsBulkDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsBulkMoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsConvertToPrivateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsConvertToPublicResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsDisconnectSharedResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsEkmListOriginalConnectedChannelInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsGetConversationPrefsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsGetCustomRetentionResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsGetTeamsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsLookupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRemoveCustomRetentionResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRenameResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRestrictAccessAddGroupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRestrictAccessListGroupsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsRestrictAccessRemoveGroupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSearchResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSetConversationPrefsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSetCustomRetentionResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsSetTeamsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsUnarchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsWhitelistAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsWhitelistListGroupsLinkedToChannelResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminConversationsWhitelistRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiAddAliasResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminEmojiRenameResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminFunctionsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminFunctionsPermissionsLookupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminFunctionsPermissionsSetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsApproveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsApprovedListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsDeniedListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsDenyResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminInviteRequestsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminRolesAddAssignmentsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminRolesListAssignmentsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminRolesRemoveAssignmentsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsAdminsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsOwnersListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetDefaultChannelsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetDescriptionResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetDiscoverabilityResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetIconResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminTeamsSettingsSetNameResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsAddChannelsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsAddTeamsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsListChannelsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsergroupsRemoveChannelsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersAssignResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionClearSettingsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionGetSettingsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionInvalidateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionResetBulkResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionResetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSessionSetSettingsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetAdminResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetExpirationResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetOwnerResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersSetRegularResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminUsersUnsupportedVersionsExportResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsCollaboratorsAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsCollaboratorsRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsPermissionsLookupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsSearchResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AdminWorkflowsUnpublishResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ApiTestResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsConnectionsOpenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsEventAuthorizationsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestExportResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsManifestValidateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsRequestResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsResourcesListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsScopesListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsUsersListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsPermissionsUsersRequestResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsUninstallResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AppsUserConnectionUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AssistantThreadsSetStatusResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AssistantThreadsSetSuggestedPromptsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AssistantThreadsSetTitleResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AuthRevokeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AuthTeamsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/AuthTestResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksEditResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BookmarksRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/BotsInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsEndResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsParticipantsAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsParticipantsRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CallsUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesAccessDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesAccessSetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesEditResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/CanvasesSectionsLookupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsArchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsHistoryResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsJoinResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsKickResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsLeaveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsMarkResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsRenameResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsRepliesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsSetPurposeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsSetTopicResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChannelsUnarchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatDeleteScheduledMessageResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatGetPermalinkResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatMeMessageResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatPostEphemeralResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatPostMessageResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatScheduleMessageResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatScheduledMessagesListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatUnfurlResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ChatUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsAcceptSharedInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsApproveSharedInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsArchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsCanvasesCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsCloseResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsDeclineSharedInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsExternalInvitePermissionsSetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsHistoryResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsInviteSharedResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsJoinResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsKickResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsLeaveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsListConnectInvitesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsMarkResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsMembersResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsOpenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRenameResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRepliesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRequestSharedInviteApproveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRequestSharedInviteDenyResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsRequestSharedInviteListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsSetPurposeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsSetTopicResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ConversationsUnarchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DialogOpenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndEndDndResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndEndSnoozeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndSetSnoozeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/DndTeamInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/EmojiListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/EntityPresentDetailsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCommentsAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCommentsDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCommentsEditResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesCompleteUploadExternalResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesGetUploadURLExternalResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteShareResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRemoteUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesRevokePublicURLResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesSharedPublicURLResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FilesUploadResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FunctionsCompleteErrorResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/FunctionsCompleteSuccessResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsArchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsCloseResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsCreateChildResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsHistoryResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsInviteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsKickResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsLeaveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsMarkResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsOpenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsRenameResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsRepliesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsSetPurposeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsSetTopicResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/GroupsUnarchiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImCloseResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImHistoryResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImMarkResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImOpenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ImRepliesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MigrationExchangeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimCloseResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimHistoryResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimMarkResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimOpenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/MpimRepliesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthAccessResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthTokenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthV2AccessResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OauthV2ExchangeResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OpenIDConnectTokenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/OpenIDConnectUserInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/PinsAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/PinsRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsGetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ReactionsRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersCompleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersDeleteResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RemindersListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RtmConnectResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/RtmStartResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/SearchMessagesResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/StarsAddResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/StarsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/StarsRemoveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamAccessLogsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamBillableInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamBillingInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamExternalTeamsDisconnectResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamExternalTeamsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamIntegrationLogsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamPreferencesListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/TeamProfileGetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ToolingTokensRotateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsCreateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsDisableResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsEnableResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsUsersListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsergroupsUsersUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersConversationsResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersDeletePhotoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersDiscoverableContactsLookupResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersGetPresenceResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersIdentityResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersInfoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersListResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersLookupByEmailResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersProfileGetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersProfileSetResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersSetActiveResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersSetPhotoResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/UsersSetPresenceResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsOpenResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsPublishResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsPushResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/ViewsUpdateResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/WorkflowsStepCompletedResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/WorkflowsStepFailedResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/WorkflowsUpdateStepResponse.js +0 -0
- /package/node_modules/{@maka/runtime/node_modules/@slack → @slack}/web-api/dist/types/response/index.js +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/License +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/README.md +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/example/dns.js +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/example/stop.js +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/index.js +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/lib/retry.js +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/lib/retry_operation.js +0 -0
- /package/node_modules/{@maka/runtime → @slack/web-api}/node_modules/retry/package.json +0 -0
|
@@ -5,12 +5,26 @@ Generated by scripts/generate-runtime-host-peer-notices.mjs from the exact
|
|
|
5
5
|
four-target production dependency inventory. Do not edit this file by hand.
|
|
6
6
|
|
|
7
7
|
Manifest: native/runtime-host-peer/Cargo.toml
|
|
8
|
-
Cargo.lock SHA-256:
|
|
9
|
-
Inventory SHA-256:
|
|
8
|
+
Cargo.lock SHA-256: 6e489606d4ad4f45433b853ddd0ca96aa2e4160f34bb0446f8f63f7f0fd639b6
|
|
9
|
+
Inventory SHA-256: c28a17749fa5f9af237a49dd2b4ad9149b6c4224d383c4a5050eeac3be14073c
|
|
10
10
|
|
|
11
11
|
Packages
|
|
12
12
|
--------
|
|
13
13
|
|
|
14
|
+
aead@0.5.2
|
|
15
|
+
----------
|
|
16
|
+
SPDX license: MIT OR Apache-2.0
|
|
17
|
+
Source: https://github.com/RustCrypto/traits
|
|
18
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
19
|
+
License text: b38f573d5bc805e32f92fa8772ad44f1330a7de85022d133b2cd3d17424f8c22 (LICENSE-MIT)
|
|
20
|
+
|
|
21
|
+
aes@0.8.4
|
|
22
|
+
---------
|
|
23
|
+
SPDX license: MIT OR Apache-2.0
|
|
24
|
+
Source: https://github.com/RustCrypto/block-ciphers
|
|
25
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
26
|
+
License text: 33e996382660b2bac31ae8ec48e5dc8ddf44e52ddce0612457301404c9a29111 (LICENSE-MIT)
|
|
27
|
+
|
|
14
28
|
anyhow@1.0.104
|
|
15
29
|
--------------
|
|
16
30
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -24,6 +38,13 @@ SPDX license: BSD-2-Clause
|
|
|
24
38
|
Source: https://github.com/droundy/arrayref
|
|
25
39
|
License text: 112d1beb5fcb0478799ffe856253e9ac08afe88f71cdde313a2aa629e28f8d58 (LICENSE)
|
|
26
40
|
|
|
41
|
+
asn1-rs@0.6.2
|
|
42
|
+
-------------
|
|
43
|
+
SPDX license: MIT OR Apache-2.0
|
|
44
|
+
Source: https://github.com/rusticata/asn1-rs.git
|
|
45
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
46
|
+
License text: 9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea (LICENSE-MIT)
|
|
47
|
+
|
|
27
48
|
asn1-rs@0.7.2
|
|
28
49
|
-------------
|
|
29
50
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -31,6 +52,13 @@ Source: https://github.com/rusticata/asn1-rs.git
|
|
|
31
52
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
32
53
|
License text: 9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea (LICENSE-MIT)
|
|
33
54
|
|
|
55
|
+
asn1-rs-derive@0.5.1
|
|
56
|
+
--------------------
|
|
57
|
+
SPDX license: MIT OR Apache-2.0
|
|
58
|
+
Source: https://github.com/rusticata/asn1-rs.git
|
|
59
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
60
|
+
License text: 9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea (LICENSE-MIT)
|
|
61
|
+
|
|
34
62
|
asn1-rs-derive@0.6.0
|
|
35
63
|
--------------------
|
|
36
64
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -50,6 +78,20 @@ SPDX license: BSD-2-Clause OR MIT
|
|
|
50
78
|
Source: https://github.com/KizzyCode/asn1_der-rust
|
|
51
79
|
License text: b70b1cc58b6d09afc7bfba35c45cc8613d121563acc5b9cbc519ae3b9a10af8d (MIT.txt)
|
|
52
80
|
|
|
81
|
+
async-broadcast@0.7.2
|
|
82
|
+
---------------------
|
|
83
|
+
SPDX license: MIT OR Apache-2.0
|
|
84
|
+
Source: https://github.com/smol-rs/async-broadcast
|
|
85
|
+
License text: 65bf6afb9643771ab64b3145d7c11f4977a0b0f088718b3727e9c5256c931553 (LICENSE-APACHE)
|
|
86
|
+
License text: 48d36a6709db4f01ec2b5d9130df3981192fd7c232bbb9c216626e550a0876dc (LICENSE-MIT)
|
|
87
|
+
|
|
88
|
+
async-channel@2.5.0
|
|
89
|
+
-------------------
|
|
90
|
+
SPDX license: Apache-2.0 OR MIT
|
|
91
|
+
Source: https://github.com/smol-rs/async-channel
|
|
92
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
93
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
94
|
+
|
|
53
95
|
async-trait@0.1.92
|
|
54
96
|
------------------
|
|
55
97
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -95,6 +137,20 @@ Source: https://github.com/marshallpierce/rust-base64
|
|
|
95
137
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
96
138
|
License text: 6a8da4c78c729176907b068222cc6e8e612b09c7345628c98cbceb22c0f06979 (LICENSE-MIT)
|
|
97
139
|
|
|
140
|
+
base64@0.23.1
|
|
141
|
+
-------------
|
|
142
|
+
SPDX license: MIT OR Apache-2.0
|
|
143
|
+
Source: https://github.com/marshallpierce/rust-base64
|
|
144
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
145
|
+
License text: 2ff8d973431258f88429889a3a2358d66b167bd3e64764ec88f531293518dda5 (LICENSE-MIT)
|
|
146
|
+
|
|
147
|
+
bitflags@1.3.2
|
|
148
|
+
--------------
|
|
149
|
+
SPDX license: MIT/Apache-2.0
|
|
150
|
+
Source: https://github.com/bitflags/bitflags
|
|
151
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
152
|
+
License text: 14435fbcd271e2783f721b57b7bf4f6502c1379249a4300e0e5bb774686c2d90 (LICENSE-MIT)
|
|
153
|
+
|
|
98
154
|
bitflags@2.13.1
|
|
99
155
|
---------------
|
|
100
156
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -116,6 +172,18 @@ Source: https://github.com/Nullus157/bs58-rs
|
|
|
116
172
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
117
173
|
License text: 67047503c71f90918a89209a99aaacd9db2d28a6ab6bc6568b8506bcbab5d9d8 (LICENSE-MIT)
|
|
118
174
|
|
|
175
|
+
bytecheck@0.8.3
|
|
176
|
+
---------------
|
|
177
|
+
SPDX license: MIT
|
|
178
|
+
Source: https://github.com/rkyv/bytecheck
|
|
179
|
+
License text: 75114f300a13994eaf147b93a628116ecd1bb2a3a948e3244ca5737062ed2e7f (LICENSE)
|
|
180
|
+
|
|
181
|
+
bytecheck_derive@0.8.3
|
|
182
|
+
----------------------
|
|
183
|
+
SPDX license: MIT
|
|
184
|
+
Source: https://github.com/rkyv/bytecheck
|
|
185
|
+
License text: 6cb29bf78c6e512c65df670da014b3e1ee04a1db1f0adffd8147c21e25696241 (LICENSE)
|
|
186
|
+
|
|
119
187
|
byteorder@1.5.0
|
|
120
188
|
---------------
|
|
121
189
|
SPDX license: Unlicense OR MIT
|
|
@@ -136,6 +204,13 @@ Source: https://github.com/rust-lang/cc-rs
|
|
|
136
204
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
137
205
|
License text: 84e1bbfebd74e4196cfa0ea5cf58e677aa24b47c6661adbb19fb07920d089d1d (LICENSE-MIT)
|
|
138
206
|
|
|
207
|
+
ccm@0.5.0
|
|
208
|
+
---------
|
|
209
|
+
SPDX license: Apache-2.0 OR MIT
|
|
210
|
+
Source: https://github.com/RustCrypto/AEADs/tree/master/ccm
|
|
211
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
212
|
+
License text: a6d96dff735a59b9677ddc5d9abd02b2add5632f2c2cce5d3c9e990f4f4fdcad (LICENSE-MIT)
|
|
213
|
+
|
|
139
214
|
cfg-if@1.0.4
|
|
140
215
|
------------
|
|
141
216
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -156,6 +231,20 @@ Source: https://github.com/RustCrypto/stream-ciphers
|
|
|
156
231
|
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
157
232
|
License text: 1038b7737a0a04bd9268bbb8d17ee4e13c9bb3cf36f39da46c3a1818c798aa20 (LICENSE-MIT)
|
|
158
233
|
|
|
234
|
+
cipher@0.4.4
|
|
235
|
+
------------
|
|
236
|
+
SPDX license: MIT OR Apache-2.0
|
|
237
|
+
Source: https://github.com/RustCrypto/traits
|
|
238
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
239
|
+
License text: 92f01fc7ca904e16f13e27d4897e507b5446e42516bb7efacc4c5ed189008c31 (LICENSE-MIT)
|
|
240
|
+
|
|
241
|
+
concurrent-queue@2.5.0
|
|
242
|
+
----------------------
|
|
243
|
+
SPDX license: Apache-2.0 OR MIT
|
|
244
|
+
Source: https://github.com/smol-rs/concurrent-queue
|
|
245
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
246
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
247
|
+
|
|
159
248
|
const-str@0.4.3
|
|
160
249
|
---------------
|
|
161
250
|
SPDX license: MIT
|
|
@@ -196,6 +285,25 @@ Source: https://github.com/RustCrypto/utils
|
|
|
196
285
|
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
197
286
|
License text: 6334e52844d698f528b923f406aeb5bc3a2c6da77916c3b79f1662622fcde897 (LICENSE-MIT)
|
|
198
287
|
|
|
288
|
+
crc@3.4.0
|
|
289
|
+
---------
|
|
290
|
+
SPDX license: MIT OR Apache-2.0
|
|
291
|
+
Source: https://github.com/mrhooray/crc-rs.git
|
|
292
|
+
License text: 468044e890b145b08173df5ec8146781d2ebff73f851c6899e16cbc14eeb028d (LICENSE-APACHE)
|
|
293
|
+
License text: bec1ff6c886313105aabc29823670c41f1baf3f2c97cefe41b0261b3a52d2237 (LICENSE-MIT)
|
|
294
|
+
|
|
295
|
+
crc-catalog@2.5.0
|
|
296
|
+
-----------------
|
|
297
|
+
SPDX license: MIT OR Apache-2.0
|
|
298
|
+
Source: https://github.com/akhilles/crc-catalog.git
|
|
299
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
300
|
+
|
|
301
|
+
crc32c@0.6.8
|
|
302
|
+
------------
|
|
303
|
+
SPDX license: Apache-2.0/MIT
|
|
304
|
+
Source: https://github.com/zowens/crc32c
|
|
305
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
306
|
+
|
|
199
307
|
critical-section@1.2.0
|
|
200
308
|
----------------------
|
|
201
309
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -245,6 +353,13 @@ Source: https://github.com/mmastrac/linktime
|
|
|
245
353
|
License text: 6dc0e068dcf3a5bc8e054205b85b7720e1d49265bbc64bf515d2cf79197df69a (LICENSE-APACHE)
|
|
246
354
|
License text: bccaa8b6c09f94e81f06696e179dbe058464bbdfbc823b6d49cada1d71e84ac3 (LICENSE-MIT)
|
|
247
355
|
|
|
356
|
+
ctr@0.9.2
|
|
357
|
+
---------
|
|
358
|
+
SPDX license: MIT OR Apache-2.0
|
|
359
|
+
Source: https://github.com/RustCrypto/block-modes
|
|
360
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
361
|
+
License text: f3bd9e2e7745e49db37c28033e4da290df8cf528aa21369d6861699804c5e5dd (LICENSE-MIT)
|
|
362
|
+
|
|
248
363
|
curve25519-dalek@4.1.3
|
|
249
364
|
----------------------
|
|
250
365
|
SPDX license: BSD-3-Clause
|
|
@@ -283,6 +398,13 @@ Source: https://github.com/rusticata/der-parser.git
|
|
|
283
398
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
284
399
|
License text: 9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea (LICENSE-MIT)
|
|
285
400
|
|
|
401
|
+
der-parser@9.0.0
|
|
402
|
+
----------------
|
|
403
|
+
SPDX license: MIT/Apache-2.0
|
|
404
|
+
Source: https://github.com/rusticata/der-parser.git
|
|
405
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
406
|
+
License text: 9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea (LICENSE-MIT)
|
|
407
|
+
|
|
286
408
|
deranged@0.5.8
|
|
287
409
|
--------------
|
|
288
410
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -338,6 +460,20 @@ Source: https://github.com/indexmap-rs/equivalent
|
|
|
338
460
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
339
461
|
License text: 4428cd87371acbd49f9f6380125492cd1e89df621d2fd7f55e30a0891f96a433 (LICENSE-MIT)
|
|
340
462
|
|
|
463
|
+
event-listener@5.4.2
|
|
464
|
+
--------------------
|
|
465
|
+
SPDX license: Apache-2.0 OR MIT
|
|
466
|
+
Source: https://github.com/smol-rs/event-listener
|
|
467
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
468
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
469
|
+
|
|
470
|
+
event-listener-strategy@0.5.4
|
|
471
|
+
-----------------------------
|
|
472
|
+
SPDX license: Apache-2.0 OR MIT
|
|
473
|
+
Source: https://github.com/smol-rs/event-listener-strategy
|
|
474
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
475
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
476
|
+
|
|
341
477
|
fastbloom@0.17.0
|
|
342
478
|
----------------
|
|
343
479
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -495,6 +631,13 @@ Source: https://github.com/rust-lang/hashbrown
|
|
|
495
631
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
496
632
|
License text: ae9791f02f2bbe0ce17b434753af97be6e5284b6f8e9f22db3c1f0f11b2e015a (LICENSE-MIT)
|
|
497
633
|
|
|
634
|
+
hashbrown@0.17.1
|
|
635
|
+
----------------
|
|
636
|
+
SPDX license: MIT OR Apache-2.0
|
|
637
|
+
Source: https://github.com/rust-lang/hashbrown
|
|
638
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
639
|
+
License text: ae9791f02f2bbe0ce17b434753af97be6e5284b6f8e9f22db3c1f0f11b2e015a (LICENSE-MIT)
|
|
640
|
+
|
|
498
641
|
hashlink@0.10.0
|
|
499
642
|
---------------
|
|
500
643
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -613,6 +756,13 @@ SPDX license: MIT OR Apache-2.0
|
|
|
613
756
|
Source: https://github.com/libp2p/if-watch
|
|
614
757
|
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
615
758
|
|
|
759
|
+
inout@0.1.4
|
|
760
|
+
-----------
|
|
761
|
+
SPDX license: MIT OR Apache-2.0
|
|
762
|
+
Source: https://github.com/RustCrypto/utils
|
|
763
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
764
|
+
License text: 71366a4092ad07b6fc29c4aa94ceeac8b892f7a24fcdedf8df7cba8112cdc15b (LICENSE-MIT)
|
|
765
|
+
|
|
616
766
|
ipconfig@0.3.4
|
|
617
767
|
--------------
|
|
618
768
|
SPDX license: MIT/Apache-2.0
|
|
@@ -634,6 +784,13 @@ Source: https://github.com/rust-itertools/itertools
|
|
|
634
784
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
635
785
|
License text: fdd1c2117bcf8157d1d013d0953c0a7e6e5fab73df9e36773cd77634428568eb (LICENSE-MIT)
|
|
636
786
|
|
|
787
|
+
itoa@1.0.18
|
|
788
|
+
-----------
|
|
789
|
+
SPDX license: MIT OR Apache-2.0
|
|
790
|
+
Source: https://github.com/dtolnay/itoa
|
|
791
|
+
License text: 95bd3988beee069fa2848f648dab43cc6e0b2add2ad6bcb17360caf749802bcc (LICENSE-APACHE)
|
|
792
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
793
|
+
|
|
637
794
|
lazy_static@1.5.0
|
|
638
795
|
-----------------
|
|
639
796
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -762,6 +919,12 @@ SPDX license: MIT
|
|
|
762
919
|
Source: https://github.com/libp2p/rust-libp2p
|
|
763
920
|
License text: 80f847ab8b3d1802dcf33aad57b13d3e5cbae4969fb5990a5ff24ac7ae98ddb6 (MIT.txt)
|
|
764
921
|
|
|
922
|
+
libp2p-webrtc-utils@0.4.0
|
|
923
|
+
-------------------------
|
|
924
|
+
SPDX license: MIT
|
|
925
|
+
Source: https://github.com/libp2p/rust-libp2p
|
|
926
|
+
License text: dfa6aff25cb0efb547a0bd19a15d4fb18f360feac358dfe5e024fdcc32cc5cea (MIT.txt)
|
|
927
|
+
|
|
765
928
|
libp2p-yamux@0.47.0
|
|
766
929
|
-------------------
|
|
767
930
|
SPDX license: MIT
|
|
@@ -802,6 +965,13 @@ SPDX license: MIT
|
|
|
802
965
|
Source: https://github.com/mriise/smol-base-x
|
|
803
966
|
License text: 847558339dfee15f4f45f7f5b90efb48f75e51f78105c0f968cc4bf51dfde4a0 (MIT.txt)
|
|
804
967
|
|
|
968
|
+
md-5@0.10.6
|
|
969
|
+
-----------
|
|
970
|
+
SPDX license: MIT OR Apache-2.0
|
|
971
|
+
Source: https://github.com/RustCrypto/hashes
|
|
972
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
973
|
+
License text: 4031faf6212ee74481b2597dc84fb61568d6a732480c3efdf317f2ac83d330b4 (LICENSE-MIT)
|
|
974
|
+
|
|
805
975
|
memchr@2.8.3
|
|
806
976
|
------------
|
|
807
977
|
SPDX license: Unlicense OR MIT
|
|
@@ -809,6 +979,12 @@ Source: https://github.com/BurntSushi/memchr
|
|
|
809
979
|
License text: 65314a6c96683f76f7495709bb0ddecb4eaa6fa244b28f23c4812ef8e5524066 (COPYING)
|
|
810
980
|
License text: 154c1af2b38e25e5c18613dfe352eed29b0863cb39e494007822cdeb39150ac5 (LICENSE-MIT)
|
|
811
981
|
|
|
982
|
+
memoffset@0.9.1
|
|
983
|
+
---------------
|
|
984
|
+
SPDX license: MIT
|
|
985
|
+
Source: https://github.com/Gilnaa/memoffset
|
|
986
|
+
License text: 3234ac55816264ee7b6c7ee27efd61cf0a1fe775806870e3d9b4c41ea73c5cb1 (LICENSE)
|
|
987
|
+
|
|
812
988
|
minimal-lexical@0.2.1
|
|
813
989
|
---------------------
|
|
814
990
|
SPDX license: MIT/Apache-2.0
|
|
@@ -855,6 +1031,18 @@ SPDX license: MIT
|
|
|
855
1031
|
Source: https://github.com/libp2p/rust-libp2p
|
|
856
1032
|
License text: 4104e268c110e0948f82580e90eeb8a4106c388c4c0f6a1b7ed2e4dd1360872a (MIT.txt)
|
|
857
1033
|
|
|
1034
|
+
munge@0.4.7
|
|
1035
|
+
-----------
|
|
1036
|
+
SPDX license: MIT
|
|
1037
|
+
Source: https://github.com/djkoloski/munge
|
|
1038
|
+
License text: 76e5968f85842714c6a059f78ebf6d3615f0a79e41d0bb115f7ea807508bc41b (LICENSE)
|
|
1039
|
+
|
|
1040
|
+
munge_macro@0.4.7
|
|
1041
|
+
-----------------
|
|
1042
|
+
SPDX license: MIT
|
|
1043
|
+
Source: https://github.com/djkoloski/munge
|
|
1044
|
+
License text: 76e5968f85842714c6a059f78ebf6d3615f0a79e41d0bb115f7ea807508bc41b (LICENSE)
|
|
1045
|
+
|
|
858
1046
|
napi@3.12.2
|
|
859
1047
|
-----------
|
|
860
1048
|
SPDX license: MIT
|
|
@@ -915,6 +1103,12 @@ SPDX license: MIT
|
|
|
915
1103
|
Source: https://github.com/nix-rust/nix
|
|
916
1104
|
License text: b9b039b5058cfe9680025ca12f8591df832666baef9f469ea8ba24e73a7fee60 (LICENSE)
|
|
917
1105
|
|
|
1106
|
+
nix@0.31.3
|
|
1107
|
+
----------
|
|
1108
|
+
SPDX license: MIT
|
|
1109
|
+
Source: https://github.com/nix-rust/nix
|
|
1110
|
+
License text: b9b039b5058cfe9680025ca12f8591df832666baef9f469ea8ba24e73a7fee60 (LICENSE)
|
|
1111
|
+
|
|
918
1112
|
nohash-hasher@0.2.0
|
|
919
1113
|
-------------------
|
|
920
1114
|
SPDX license: Apache-2.0 OR MIT
|
|
@@ -956,6 +1150,13 @@ Source: https://github.com/rust-num/num-traits
|
|
|
956
1150
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
957
1151
|
License text: 14435fbcd271e2783f721b57b7bf4f6502c1379249a4300e0e5bb774686c2d90 (LICENSE-MIT)
|
|
958
1152
|
|
|
1153
|
+
oid-registry@0.7.1
|
|
1154
|
+
------------------
|
|
1155
|
+
SPDX license: MIT OR Apache-2.0
|
|
1156
|
+
Source: https://github.com/rusticata/oid-registry.git
|
|
1157
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
1158
|
+
License text: 9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea (LICENSE-MIT)
|
|
1159
|
+
|
|
959
1160
|
oid-registry@0.8.1
|
|
960
1161
|
------------------
|
|
961
1162
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -970,6 +1171,14 @@ Source: https://github.com/matklad/once_cell
|
|
|
970
1171
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
971
1172
|
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
972
1173
|
|
|
1174
|
+
parking@2.2.1
|
|
1175
|
+
-------------
|
|
1176
|
+
SPDX license: Apache-2.0 OR MIT
|
|
1177
|
+
Source: https://github.com/smol-rs/parking
|
|
1178
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
1179
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
1180
|
+
License text: c43e20176655c7a74c12af7470b65065fac4c81cfd511c69520fcc7f738a3f91 (LICENSE-THIRD-PARTY)
|
|
1181
|
+
|
|
973
1182
|
parking_lot@0.12.5
|
|
974
1183
|
------------------
|
|
975
1184
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -997,6 +1206,12 @@ SPDX license: MIT
|
|
|
997
1206
|
Source: https://github.com/jcreekmore/pem-rs.git
|
|
998
1207
|
License text: fd270b8c59ed37680ea2106f920afe52ebc4d276d2377283f8b13276b36c09bd (LICENSE.md)
|
|
999
1208
|
|
|
1209
|
+
pem@4.0.0
|
|
1210
|
+
---------
|
|
1211
|
+
SPDX license: MIT
|
|
1212
|
+
Source: https://github.com/jcreekmore/pem-rs.git
|
|
1213
|
+
License text: fd270b8c59ed37680ea2106f920afe52ebc4d276d2377283f8b13276b36c09bd (LICENSE.md)
|
|
1214
|
+
|
|
1000
1215
|
percent-encoding@2.3.2
|
|
1001
1216
|
----------------------
|
|
1002
1217
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1071,6 +1286,18 @@ SPDX license: Apache-2.0
|
|
|
1071
1286
|
Source: https://github.com/tokio-rs/prost
|
|
1072
1287
|
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE)
|
|
1073
1288
|
|
|
1289
|
+
ptr_meta@0.3.2
|
|
1290
|
+
--------------
|
|
1291
|
+
SPDX license: MIT
|
|
1292
|
+
Source: https://github.com/rkyv/ptr_meta
|
|
1293
|
+
License text: a427dbea98ffc849b4d8368d97211afdfef816e5c34090e7024a4787299f0e2e (LICENSE)
|
|
1294
|
+
|
|
1295
|
+
ptr_meta_derive@0.3.2
|
|
1296
|
+
---------------------
|
|
1297
|
+
SPDX license: MIT
|
|
1298
|
+
Source: https://github.com/rkyv/ptr_meta
|
|
1299
|
+
License text: a427dbea98ffc849b4d8368d97211afdfef816e5c34090e7024a4787299f0e2e (LICENSE)
|
|
1300
|
+
|
|
1074
1301
|
quick-protobuf@0.8.1
|
|
1075
1302
|
--------------------
|
|
1076
1303
|
SPDX license: MIT
|
|
@@ -1104,6 +1331,13 @@ Source: https://github.com/quinn-rs/quinn
|
|
|
1104
1331
|
License text: 43070e2d4e532684de521b885f385d0841030efa2b1a20bafb76133a5e1379c1 (LICENSE-APACHE)
|
|
1105
1332
|
License text: 05fa1ba3228aab8d2bf637f286d7579ed76256c1dab3fa955c2489b920ffeb35 (LICENSE-MIT)
|
|
1106
1333
|
|
|
1334
|
+
quinn-udp@0.6.1
|
|
1335
|
+
---------------
|
|
1336
|
+
SPDX license: MIT OR Apache-2.0
|
|
1337
|
+
Source: https://github.com/quinn-rs/quinn
|
|
1338
|
+
License text: 43070e2d4e532684de521b885f385d0841030efa2b1a20bafb76133a5e1379c1 (LICENSE-APACHE)
|
|
1339
|
+
License text: 05fa1ba3228aab8d2bf637f286d7579ed76256c1dab3fa955c2489b920ffeb35 (LICENSE-MIT)
|
|
1340
|
+
|
|
1107
1341
|
quote@1.0.47
|
|
1108
1342
|
------------
|
|
1109
1343
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1111,6 +1345,12 @@ Source: https://github.com/dtolnay/quote
|
|
|
1111
1345
|
License text: 95bd3988beee069fa2848f648dab43cc6e0b2add2ad6bcb17360caf749802bcc (LICENSE-APACHE)
|
|
1112
1346
|
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
1113
1347
|
|
|
1348
|
+
rancor@0.1.3
|
|
1349
|
+
------------
|
|
1350
|
+
SPDX license: MIT
|
|
1351
|
+
Source: https://github.com/rkyv/rancor
|
|
1352
|
+
License text: 75114f300a13994eaf147b93a628116ecd1bb2a3a948e3244ca5737062ed2e7f (LICENSE)
|
|
1353
|
+
|
|
1114
1354
|
rand@0.10.2
|
|
1115
1355
|
-----------
|
|
1116
1356
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1180,6 +1420,18 @@ SPDX license: MIT OR Apache-2.0
|
|
|
1180
1420
|
Source: https://github.com/rustls/rcgen
|
|
1181
1421
|
License text: e1c4f4e7314d39c1ba620f549dee2d16c5f3094c8a25a8d4465086af38a6383a (LICENSE)
|
|
1182
1422
|
|
|
1423
|
+
rcgen@0.14.10
|
|
1424
|
+
-------------
|
|
1425
|
+
SPDX license: MIT OR Apache-2.0
|
|
1426
|
+
Source: https://github.com/rustls/rcgen
|
|
1427
|
+
License text: acce84ab5a3a9cf7d12402e67ab27b916a7c28fe6bf5be92b5d21bb3a088715f (LICENSE)
|
|
1428
|
+
|
|
1429
|
+
rend@0.5.4
|
|
1430
|
+
----------
|
|
1431
|
+
SPDX license: MIT
|
|
1432
|
+
Source: https://github.com/djkoloski/rend
|
|
1433
|
+
License text: a427dbea98ffc849b4d8368d97211afdfef816e5c34090e7024a4787299f0e2e (LICENSE)
|
|
1434
|
+
|
|
1183
1435
|
resolv-conf@0.7.6
|
|
1184
1436
|
-----------------
|
|
1185
1437
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1195,6 +1447,115 @@ License text: edb9c6dbff4676b90e729ffdb6c9239076a2e01b3bb8aadf080bdc7a682296da (
|
|
|
1195
1447
|
License text: f3ba8fc296a970c976b1bdcaecc5939bf9757dbaecd3b4421e3e7ed29392e9b8 (LICENSE-BoringSSL)
|
|
1196
1448
|
License text: 07414b6c33f30acfd5e0dda512e77ddbeb9f8a37290568fd056a01a0b50244c1 (LICENSE-other-bits)
|
|
1197
1449
|
|
|
1450
|
+
rkyv@0.8.18
|
|
1451
|
+
-----------
|
|
1452
|
+
SPDX license: MIT
|
|
1453
|
+
Source: https://github.com/rkyv/rkyv
|
|
1454
|
+
License text: a427dbea98ffc849b4d8368d97211afdfef816e5c34090e7024a4787299f0e2e (LICENSE)
|
|
1455
|
+
|
|
1456
|
+
rkyv_derive@0.8.18
|
|
1457
|
+
------------------
|
|
1458
|
+
SPDX license: MIT
|
|
1459
|
+
Source: https://github.com/rkyv/rkyv
|
|
1460
|
+
License text: a427dbea98ffc849b4d8368d97211afdfef816e5c34090e7024a4787299f0e2e (LICENSE)
|
|
1461
|
+
|
|
1462
|
+
rtc@0.21.0-rc.1
|
|
1463
|
+
---------------
|
|
1464
|
+
SPDX license: MIT/Apache-2.0
|
|
1465
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1466
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
1467
|
+
License text: 6c20917694e80c18e344457d73162f5484985e05f443e0db92d960d6e83630c5 (LICENSE-MIT)
|
|
1468
|
+
|
|
1469
|
+
rtc-crypto@0.21.0-rc.1
|
|
1470
|
+
----------------------
|
|
1471
|
+
SPDX license: MIT/Apache-2.0
|
|
1472
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1473
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1474
|
+
|
|
1475
|
+
rtc-datachannel@0.21.0-rc.1
|
|
1476
|
+
---------------------------
|
|
1477
|
+
SPDX license: MIT/Apache-2.0
|
|
1478
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1479
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1480
|
+
|
|
1481
|
+
rtc-dtls@0.21.0-rc.1
|
|
1482
|
+
--------------------
|
|
1483
|
+
SPDX license: MIT/Apache-2.0
|
|
1484
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1485
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1486
|
+
|
|
1487
|
+
rtc-ice@0.21.0-rc.1
|
|
1488
|
+
-------------------
|
|
1489
|
+
SPDX license: MIT/Apache-2.0
|
|
1490
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1491
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1492
|
+
|
|
1493
|
+
rtc-interceptor@0.21.0-rc.1
|
|
1494
|
+
---------------------------
|
|
1495
|
+
SPDX license: MIT/Apache-2.0
|
|
1496
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1497
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1498
|
+
|
|
1499
|
+
rtc-mdns@0.21.0-rc.1
|
|
1500
|
+
--------------------
|
|
1501
|
+
SPDX license: MIT/Apache-2.0
|
|
1502
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1503
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1504
|
+
|
|
1505
|
+
rtc-media@0.21.0-rc.1
|
|
1506
|
+
---------------------
|
|
1507
|
+
SPDX license: MIT/Apache-2.0
|
|
1508
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1509
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1510
|
+
|
|
1511
|
+
rtc-rtcp@0.21.0-rc.1
|
|
1512
|
+
--------------------
|
|
1513
|
+
SPDX license: MIT/Apache-2.0
|
|
1514
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1515
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1516
|
+
|
|
1517
|
+
rtc-rtp@0.21.0-rc.1
|
|
1518
|
+
-------------------
|
|
1519
|
+
SPDX license: MIT/Apache-2.0
|
|
1520
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1521
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1522
|
+
|
|
1523
|
+
rtc-sctp@0.21.0-rc.1
|
|
1524
|
+
--------------------
|
|
1525
|
+
SPDX license: MIT/Apache-2.0
|
|
1526
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1527
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1528
|
+
|
|
1529
|
+
rtc-sdp@0.21.0-rc.1
|
|
1530
|
+
-------------------
|
|
1531
|
+
SPDX license: MIT/Apache-2.0
|
|
1532
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1533
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1534
|
+
|
|
1535
|
+
rtc-shared@0.21.0-rc.1
|
|
1536
|
+
----------------------
|
|
1537
|
+
SPDX license: MIT/Apache-2.0
|
|
1538
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1539
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1540
|
+
|
|
1541
|
+
rtc-srtp@0.21.0-rc.1
|
|
1542
|
+
--------------------
|
|
1543
|
+
SPDX license: MIT/Apache-2.0
|
|
1544
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1545
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1546
|
+
|
|
1547
|
+
rtc-stun@0.21.0-rc.1
|
|
1548
|
+
--------------------
|
|
1549
|
+
SPDX license: MIT/Apache-2.0
|
|
1550
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1551
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1552
|
+
|
|
1553
|
+
rtc-turn@0.21.0-rc.1
|
|
1554
|
+
--------------------
|
|
1555
|
+
SPDX license: MIT/Apache-2.0
|
|
1556
|
+
Source: https://github.com/webrtc-rs/rtc
|
|
1557
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1558
|
+
|
|
1198
1559
|
rtnetlink@0.20.0
|
|
1199
1560
|
----------------
|
|
1200
1561
|
SPDX license: MIT
|
|
@@ -1249,6 +1610,13 @@ SPDX license: MIT
|
|
|
1249
1610
|
Source: https://github.com/libp2p/rust-libp2p
|
|
1250
1611
|
License text: 4104e268c110e0948f82580e90eeb8a4106c388c4c0f6a1b7ed2e4dd1360872a (MIT.txt)
|
|
1251
1612
|
|
|
1613
|
+
sansio@1.0.1
|
|
1614
|
+
------------
|
|
1615
|
+
SPDX license: MIT/Apache-2.0
|
|
1616
|
+
Source: https://github.com/webrtc-rs/sansio
|
|
1617
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
1618
|
+
License text: 6c20917694e80c18e344457d73162f5484985e05f443e0db92d960d6e83630c5 (LICENSE-MIT)
|
|
1619
|
+
|
|
1252
1620
|
scopeguard@1.2.0
|
|
1253
1621
|
----------------
|
|
1254
1622
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1277,14 +1645,35 @@ Source: https://github.com/serde-rs/serde
|
|
|
1277
1645
|
License text: 95bd3988beee069fa2848f648dab43cc6e0b2add2ad6bcb17360caf749802bcc (LICENSE-APACHE)
|
|
1278
1646
|
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
1279
1647
|
|
|
1280
|
-
|
|
1648
|
+
serde_derive@1.0.229
|
|
1649
|
+
--------------------
|
|
1650
|
+
SPDX license: MIT OR Apache-2.0
|
|
1651
|
+
Source: https://github.com/serde-rs/serde
|
|
1652
|
+
License text: 95bd3988beee069fa2848f648dab43cc6e0b2add2ad6bcb17360caf749802bcc (LICENSE-APACHE)
|
|
1653
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
1654
|
+
|
|
1655
|
+
serde_json@1.0.151
|
|
1656
|
+
------------------
|
|
1657
|
+
SPDX license: MIT OR Apache-2.0
|
|
1658
|
+
Source: https://github.com/serde-rs/json
|
|
1659
|
+
License text: 95bd3988beee069fa2848f648dab43cc6e0b2add2ad6bcb17360caf749802bcc (LICENSE-APACHE)
|
|
1660
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
1661
|
+
|
|
1662
|
+
sha1@0.10.7
|
|
1281
1663
|
-----------
|
|
1282
1664
|
SPDX license: MIT OR Apache-2.0
|
|
1283
1665
|
Source: https://github.com/RustCrypto/hashes
|
|
1284
1666
|
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
1285
1667
|
License text: 4031faf6212ee74481b2597dc84fb61568d6a732480c3efdf317f2ac83d330b4 (LICENSE-MIT)
|
|
1286
1668
|
|
|
1287
|
-
|
|
1669
|
+
sha2@0.10.9
|
|
1670
|
+
-----------
|
|
1671
|
+
SPDX license: MIT OR Apache-2.0
|
|
1672
|
+
Source: https://github.com/RustCrypto/hashes
|
|
1673
|
+
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
1674
|
+
License text: 4031faf6212ee74481b2597dc84fb61568d6a732480c3efdf317f2ac83d330b4 (LICENSE-MIT)
|
|
1675
|
+
|
|
1676
|
+
shlex@2.0.1
|
|
1288
1677
|
-----------
|
|
1289
1678
|
SPDX license: MIT OR Apache-2.0
|
|
1290
1679
|
Source: https://github.com/comex/rust-shlex
|
|
@@ -1298,6 +1687,13 @@ Source: https://github.com/RustCrypto/traits/tree/master/signature
|
|
|
1298
1687
|
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (LICENSE-APACHE)
|
|
1299
1688
|
License text: 7d9f551458e84cf849649d2659dff470445dd14e1a9a37098da9eca6f7a13f62 (LICENSE-MIT)
|
|
1300
1689
|
|
|
1690
|
+
simdutf8@0.1.5
|
|
1691
|
+
--------------
|
|
1692
|
+
SPDX license: MIT OR Apache-2.0
|
|
1693
|
+
Source: https://github.com/rusticstuff/simdutf8
|
|
1694
|
+
License text: 0cec06e0e55fbc3dc5cee4fca9b607f66cb8f4e4dbcf3b3c013594dd156732e9 (LICENSE-Apache)
|
|
1695
|
+
License text: 1847e0e0698142ed4347c1441a9fa81c8fbddd44b1d8bbcd5e3647f991759d7f (LICENSE-MIT)
|
|
1696
|
+
|
|
1301
1697
|
siphasher@1.0.3
|
|
1302
1698
|
---------------
|
|
1303
1699
|
SPDX license: MIT/Apache-2.0
|
|
@@ -1352,6 +1748,13 @@ Source: https://github.com/nvzqz/static-assertions-rs
|
|
|
1352
1748
|
License text: 58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd (LICENSE-APACHE)
|
|
1353
1749
|
License text: 95a6a71a30f39d33a1fe6c03a52d1b57f0d1d43305a9137780a0c616231b4a52 (LICENSE-MIT)
|
|
1354
1750
|
|
|
1751
|
+
substring@1.4.5
|
|
1752
|
+
---------------
|
|
1753
|
+
SPDX license: MIT OR Apache-2.0
|
|
1754
|
+
Source: https://github.com/Anders429/substring
|
|
1755
|
+
License text: 43070e2d4e532684de521b885f385d0841030efa2b1a20bafb76133a5e1379c1 (LICENSE-APACHE)
|
|
1756
|
+
License text: 695546eaa4b06e1a70c5d92eec183f4108dd416224c5c7eed3d0303423596993 (LICENSE-MIT)
|
|
1757
|
+
|
|
1355
1758
|
subtle@2.6.1
|
|
1356
1759
|
------------
|
|
1357
1760
|
SPDX license: BSD-3-Clause
|
|
@@ -1454,6 +1857,13 @@ SPDX license: Unicode-3.0
|
|
|
1454
1857
|
Source: https://github.com/unicode-org/icu4x
|
|
1455
1858
|
License text: cde87abe221f413fede55ded0f17985f37b8fdc23e5f6cba9a3955437facb3ae (LICENSE)
|
|
1456
1859
|
|
|
1860
|
+
tinytemplate@1.2.1
|
|
1861
|
+
------------------
|
|
1862
|
+
SPDX license: Apache-2.0 OR MIT
|
|
1863
|
+
Source: https://github.com/bheisler/TinyTemplate
|
|
1864
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
1865
|
+
License text: e298f3a2b24df9b5cb954b79aecd16909cadb06e88d792a8038f2cc1a7b1b50e (LICENSE-MIT)
|
|
1866
|
+
|
|
1457
1867
|
tinyvec@1.12.0
|
|
1458
1868
|
--------------
|
|
1459
1869
|
SPDX license: Zlib OR Apache-2.0 OR MIT
|
|
@@ -1482,6 +1892,12 @@ SPDX license: MIT
|
|
|
1482
1892
|
Source: https://github.com/tokio-rs/tokio
|
|
1483
1893
|
License text: c0fdcda1a4ffc5fd63c452e40ce25e54f2098669e3415033b228773eea24a871 (LICENSE)
|
|
1484
1894
|
|
|
1895
|
+
tokio-util@0.7.19
|
|
1896
|
+
-----------------
|
|
1897
|
+
SPDX license: MIT
|
|
1898
|
+
Source: https://github.com/tokio-rs/tokio
|
|
1899
|
+
License text: 3e1bef82aa0dfee4504ad211f7e4895153e3191db6ab179f94a7e20f990a0b67 (LICENSE)
|
|
1900
|
+
|
|
1485
1901
|
tracing@0.1.44
|
|
1486
1902
|
--------------
|
|
1487
1903
|
SPDX license: MIT
|
|
@@ -1514,6 +1930,13 @@ SPDX license: MIT OR Apache-2.0
|
|
|
1514
1930
|
Source: https://github.com/paritytech/parity-common
|
|
1515
1931
|
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1516
1932
|
|
|
1933
|
+
unicase@2.9.0
|
|
1934
|
+
-------------
|
|
1935
|
+
SPDX license: MIT OR Apache-2.0
|
|
1936
|
+
Source: https://github.com/seanmonstar/unicase
|
|
1937
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
1938
|
+
License text: 05f344491a7d18e1a3188acbddf6f921284cb192e49d16391128d453000468ff (LICENSE-MIT)
|
|
1939
|
+
|
|
1517
1940
|
unicode-ident@1.0.24
|
|
1518
1941
|
--------------------
|
|
1519
1942
|
SPDX license: (MIT OR Apache-2.0) AND Unicode-3.0
|
|
@@ -1582,6 +2005,13 @@ Source: https://github.com/daxpedda/web-time
|
|
|
1582
2005
|
License text: ca028ef321c3c013f55315f017a77c4061b15071e3e6d1310fc8549b7a5938b5 (LICENSE-APACHE)
|
|
1583
2006
|
License text: 32ae0b6c9e4c00e6df1a408331fce92676e82f5bc1b7fd43f0273a60a0eb646e (LICENSE-MIT)
|
|
1584
2007
|
|
|
2008
|
+
webrtc@0.21.0-rc.1
|
|
2009
|
+
------------------
|
|
2010
|
+
SPDX license: MIT/Apache-2.0
|
|
2011
|
+
Source: https://github.com/webrtc-rs/webrtc
|
|
2012
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
2013
|
+
License text: 6c20917694e80c18e344457d73162f5484985e05f443e0db92d960d6e83630c5 (LICENSE-MIT)
|
|
2014
|
+
|
|
1585
2015
|
widestring@1.2.1
|
|
1586
2016
|
----------------
|
|
1587
2017
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1589,6 +2019,13 @@ Source: https://github.com/VoidStarKat/widestring-rs
|
|
|
1589
2019
|
License text: 59899c6091b540582ed617e8eeaac4919dc985ccfc35459ee9752b699be5205b (LICENSE-APACHE)
|
|
1590
2020
|
License text: 1847e0e0698142ed4347c1441a9fa81c8fbddd44b1d8bbcd5e3647f991759d7f (LICENSE-MIT)
|
|
1591
2021
|
|
|
2022
|
+
winapi@0.3.9
|
|
2023
|
+
------------
|
|
2024
|
+
SPDX license: MIT/Apache-2.0
|
|
2025
|
+
Source: https://github.com/retep998/winapi-rs
|
|
2026
|
+
License text: c5accbbd8546e94c34aed24afe689a617627d18eed5a6c48277e48db57c23851 (LICENSE-APACHE)
|
|
2027
|
+
License text: 2d01145596179ab6c55eade02ee8ad2c2172de88f2232625a00f17bb254b8c3a (LICENSE-MIT)
|
|
2028
|
+
|
|
1592
2029
|
windows@0.62.2
|
|
1593
2030
|
--------------
|
|
1594
2031
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1720,6 +2157,13 @@ SPDX license: BSD-3-Clause
|
|
|
1720
2157
|
Source: https://github.com/dalek-cryptography/curve25519-dalek/tree/main/x25519-dalek
|
|
1721
2158
|
License text: f7183775eea50f974ee99591ef2111e7ed5022b68c2ac51bc955268f9de2bfd8 (LICENSE)
|
|
1722
2159
|
|
|
2160
|
+
x509-parser@0.16.0
|
|
2161
|
+
------------------
|
|
2162
|
+
SPDX license: MIT OR Apache-2.0
|
|
2163
|
+
Source: https://github.com/rusticata/x509-parser.git
|
|
2164
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
2165
|
+
License text: 9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea (LICENSE-MIT)
|
|
2166
|
+
|
|
1723
2167
|
x509-parser@0.17.0
|
|
1724
2168
|
------------------
|
|
1725
2169
|
SPDX license: MIT OR Apache-2.0
|
|
@@ -1745,6 +2189,13 @@ SPDX license: MIT OR Apache-2.0
|
|
|
1745
2189
|
Source: https://github.com/qnighy/yasna.rs
|
|
1746
2190
|
License text: 59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018 (Apache-2.0.txt)
|
|
1747
2191
|
|
|
2192
|
+
yasna@0.6.0
|
|
2193
|
+
-----------
|
|
2194
|
+
SPDX license: MIT OR Apache-2.0
|
|
2195
|
+
Source: https://github.com/qnighy/yasna.rs
|
|
2196
|
+
License text: 769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb (LICENSE-APACHE)
|
|
2197
|
+
License text: 02273814a856eceb5006b5e1b6548cb2d5b3102b7640259cddabbd087302af16 (LICENSE-MIT)
|
|
2198
|
+
|
|
1748
2199
|
yoke@0.8.3
|
|
1749
2200
|
----------
|
|
1750
2201
|
SPDX license: Unicode-3.0
|
|
@@ -1809,6 +2260,12 @@ SPDX license: Unicode-3.0
|
|
|
1809
2260
|
Source: https://github.com/unicode-org/icu4x
|
|
1810
2261
|
License text: cde87abe221f413fede55ded0f17985f37b8fdc23e5f6cba9a3955437facb3ae (LICENSE)
|
|
1811
2262
|
|
|
2263
|
+
zmij@1.0.23
|
|
2264
|
+
-----------
|
|
2265
|
+
SPDX license: MIT
|
|
2266
|
+
Source: https://github.com/dtolnay/zmij
|
|
2267
|
+
License text: 30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652 (LICENSE-MIT)
|
|
2268
|
+
|
|
1812
2269
|
License texts
|
|
1813
2270
|
-------------
|
|
1814
2271
|
|
|
@@ -1839,6 +2296,19 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
1839
2296
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1840
2297
|
Status API Training Shop Blog About Pricing
|
|
1841
2298
|
|
|
2299
|
+
02273814a856eceb5006b5e1b6548cb2d5b3102b7640259cddabbd087302af16
|
|
2300
|
+
----------------------------------------------------------------
|
|
2301
|
+
Used by:
|
|
2302
|
+
- yasna@0.6.0 (LICENSE-MIT)
|
|
2303
|
+
|
|
2304
|
+
Copyright (c) 2016 Masaki Hara
|
|
2305
|
+
|
|
2306
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2307
|
+
|
|
2308
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2309
|
+
|
|
2310
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2311
|
+
|
|
1842
2312
|
033a9383ff21d1e4811d98dd2e0081b0ba0d9c9a31d6c7ba9e63e3488479bf29
|
|
1843
2313
|
----------------------------------------------------------------
|
|
1844
2314
|
Used by:
|
|
@@ -1898,11 +2368,37 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1898
2368
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1899
2369
|
SOFTWARE.
|
|
1900
2370
|
|
|
2371
|
+
05f344491a7d18e1a3188acbddf6f921284cb192e49d16391128d453000468ff
|
|
2372
|
+
----------------------------------------------------------------
|
|
2373
|
+
Used by:
|
|
2374
|
+
- unicase@2.9.0 (LICENSE-MIT)
|
|
2375
|
+
|
|
2376
|
+
Copyright (c) 2014-2026 Sean McArthur
|
|
2377
|
+
|
|
2378
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2379
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2380
|
+
in the Software without restriction, including without limitation the rights
|
|
2381
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2382
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2383
|
+
furnished to do so, subject to the following conditions:
|
|
2384
|
+
|
|
2385
|
+
The above copyright notice and this permission notice shall be included in
|
|
2386
|
+
all copies or substantial portions of the Software.
|
|
2387
|
+
|
|
2388
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2389
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2390
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2391
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2392
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2393
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2394
|
+
THE SOFTWARE.
|
|
2395
|
+
|
|
1901
2396
|
05fa1ba3228aab8d2bf637f286d7579ed76256c1dab3fa955c2489b920ffeb35
|
|
1902
2397
|
----------------------------------------------------------------
|
|
1903
2398
|
Used by:
|
|
1904
2399
|
- quinn-proto@0.11.17 (LICENSE-MIT)
|
|
1905
2400
|
- quinn-udp@0.5.15 (LICENSE-MIT)
|
|
2401
|
+
- quinn-udp@0.6.1 (LICENSE-MIT)
|
|
1906
2402
|
- quinn@0.11.11 (LICENSE-MIT)
|
|
1907
2403
|
|
|
1908
2404
|
Copyright (c) 2018 The quinn Developers
|
|
@@ -2219,6 +2715,7 @@ Used by:
|
|
|
2219
2715
|
- pin-project-lite@0.2.17 (LICENSE-APACHE)
|
|
2220
2716
|
- pin-project@1.1.13 (LICENSE-APACHE)
|
|
2221
2717
|
- portable-atomic@1.15.0 (LICENSE-APACHE)
|
|
2718
|
+
- simdutf8@0.1.5 (LICENSE-Apache)
|
|
2222
2719
|
- time-core@0.1.9 (LICENSE-Apache)
|
|
2223
2720
|
- time-macros@0.2.32 (LICENSE-Apache)
|
|
2224
2721
|
- time@0.3.55 (LICENSE-Apache)
|
|
@@ -2562,6 +3059,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2562
3059
|
14435fbcd271e2783f721b57b7bf4f6502c1379249a4300e0e5bb774686c2d90
|
|
2563
3060
|
----------------------------------------------------------------
|
|
2564
3061
|
Used by:
|
|
3062
|
+
- bitflags@1.3.2 (LICENSE-MIT)
|
|
2565
3063
|
- bitflags@2.13.1 (LICENSE-MIT)
|
|
2566
3064
|
- log@0.4.34 (LICENSE-MIT)
|
|
2567
3065
|
- num-bigint@0.4.8 (LICENSE-MIT)
|
|
@@ -2625,6 +3123,7 @@ THE SOFTWARE.
|
|
|
2625
3123
|
1847e0e0698142ed4347c1441a9fa81c8fbddd44b1d8bbcd5e3647f991759d7f
|
|
2626
3124
|
----------------------------------------------------------------
|
|
2627
3125
|
Used by:
|
|
3126
|
+
- simdutf8@0.1.5 (LICENSE-MIT)
|
|
2628
3127
|
- widestring@1.2.1 (LICENSE-MIT)
|
|
2629
3128
|
|
|
2630
3129
|
MIT License
|
|
@@ -3068,6 +3567,31 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3068
3567
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3069
3568
|
SOFTWARE.
|
|
3070
3569
|
|
|
3570
|
+
2d01145596179ab6c55eade02ee8ad2c2172de88f2232625a00f17bb254b8c3a
|
|
3571
|
+
----------------------------------------------------------------
|
|
3572
|
+
Used by:
|
|
3573
|
+
- winapi@0.3.9 (LICENSE-MIT)
|
|
3574
|
+
|
|
3575
|
+
Copyright (c) 2015-2018 The winapi-rs Developers
|
|
3576
|
+
|
|
3577
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3578
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3579
|
+
in the Software without restriction, including without limitation the rights
|
|
3580
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3581
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3582
|
+
furnished to do so, subject to the following conditions:
|
|
3583
|
+
|
|
3584
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3585
|
+
copies or substantial portions of the Software.
|
|
3586
|
+
|
|
3587
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3588
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3589
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3590
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3591
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3592
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3593
|
+
SOFTWARE.
|
|
3594
|
+
|
|
3071
3595
|
2dbbc3a33651dcde639666a0fb8419b62eae90fbe5631f52931b2d7b67ae8500
|
|
3072
3596
|
----------------------------------------------------------------
|
|
3073
3597
|
Used by:
|
|
@@ -3485,15 +4009,48 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
3485
4009
|
See the License for the specific language governing permissions and
|
|
3486
4010
|
limitations under the License.
|
|
3487
4011
|
|
|
4012
|
+
2ff8d973431258f88429889a3a2358d66b167bd3e64764ec88f531293518dda5
|
|
4013
|
+
----------------------------------------------------------------
|
|
4014
|
+
Used by:
|
|
4015
|
+
- base64@0.23.1 (LICENSE-MIT)
|
|
4016
|
+
|
|
4017
|
+
The MIT License (MIT)
|
|
4018
|
+
|
|
4019
|
+
Copyright (c) 2025 Alice Maz, Marshall Pierce
|
|
4020
|
+
|
|
4021
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4022
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4023
|
+
in the Software without restriction, including without limitation the rights
|
|
4024
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4025
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4026
|
+
furnished to do so, subject to the following conditions:
|
|
4027
|
+
|
|
4028
|
+
The above copyright notice and this permission notice shall be included in
|
|
4029
|
+
all copies or substantial portions of the Software.
|
|
4030
|
+
|
|
4031
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4032
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4033
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4034
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4035
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4036
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
4037
|
+
THE SOFTWARE.
|
|
4038
|
+
|
|
3488
4039
|
30fefc3a7d6a0041541858293bcbea2dde4caa4c0a5802f996a7f7e8c0085652
|
|
3489
4040
|
----------------------------------------------------------------
|
|
3490
4041
|
Used by:
|
|
3491
4042
|
- anyhow@1.0.104 (LICENSE-MIT)
|
|
4043
|
+
- async-channel@2.5.0 (LICENSE-MIT)
|
|
3492
4044
|
- async-trait@0.1.92 (LICENSE-MIT)
|
|
4045
|
+
- concurrent-queue@2.5.0 (LICENSE-MIT)
|
|
3493
4046
|
- curve25519-dalek-derive@0.1.1 (LICENSE-MIT)
|
|
3494
4047
|
- displaydoc@0.2.7 (LICENSE-MIT)
|
|
4048
|
+
- event-listener-strategy@0.5.4 (LICENSE-MIT)
|
|
4049
|
+
- event-listener@5.4.2 (LICENSE-MIT)
|
|
4050
|
+
- itoa@1.0.18 (LICENSE-MIT)
|
|
3495
4051
|
- minimal-lexical@0.2.1 (LICENSE-MIT)
|
|
3496
4052
|
- once_cell@1.21.4 (LICENSE-MIT)
|
|
4053
|
+
- parking@2.2.1 (LICENSE-MIT)
|
|
3497
4054
|
- paste@1.0.15 (LICENSE-MIT)
|
|
3498
4055
|
- pin-project-internal@1.1.13 (LICENSE-MIT)
|
|
3499
4056
|
- pin-project-lite@0.2.17 (LICENSE-MIT)
|
|
@@ -3505,6 +4062,8 @@ Used by:
|
|
|
3505
4062
|
- semver@1.0.28 (LICENSE-MIT)
|
|
3506
4063
|
- serde@1.0.229 (LICENSE-MIT)
|
|
3507
4064
|
- serde_core@1.0.229 (LICENSE-MIT)
|
|
4065
|
+
- serde_derive@1.0.229 (LICENSE-MIT)
|
|
4066
|
+
- serde_json@1.0.151 (LICENSE-MIT)
|
|
3508
4067
|
- syn@2.0.119 (LICENSE-MIT)
|
|
3509
4068
|
- syn@3.0.4 (LICENSE-MIT)
|
|
3510
4069
|
- thiserror-impl@1.0.69 (LICENSE-MIT)
|
|
@@ -3512,6 +4071,7 @@ Used by:
|
|
|
3512
4071
|
- thiserror@1.0.69 (LICENSE-MIT)
|
|
3513
4072
|
- thiserror@2.0.20 (LICENSE-MIT)
|
|
3514
4073
|
- unicode-ident@1.0.24 (LICENSE-MIT)
|
|
4074
|
+
- zmij@1.0.23 (LICENSE-MIT)
|
|
3515
4075
|
|
|
3516
4076
|
Permission is hereby granted, free of charge, to any
|
|
3517
4077
|
person obtaining a copy of this software and associated
|
|
@@ -3537,6 +4097,31 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
|
3537
4097
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3538
4098
|
DEALINGS IN THE SOFTWARE.
|
|
3539
4099
|
|
|
4100
|
+
3234ac55816264ee7b6c7ee27efd61cf0a1fe775806870e3d9b4c41ea73c5cb1
|
|
4101
|
+
----------------------------------------------------------------
|
|
4102
|
+
Used by:
|
|
4103
|
+
- memoffset@0.9.1 (LICENSE)
|
|
4104
|
+
|
|
4105
|
+
Copyright (c) 2017 Gilad Naaman
|
|
4106
|
+
|
|
4107
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4108
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4109
|
+
in the Software without restriction, including without limitation the rights
|
|
4110
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4111
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4112
|
+
furnished to do so, subject to the following conditions:
|
|
4113
|
+
|
|
4114
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4115
|
+
copies or substantial portions of the Software.
|
|
4116
|
+
|
|
4117
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4118
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4119
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4120
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4121
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4122
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4123
|
+
SOFTWARE.
|
|
4124
|
+
|
|
3540
4125
|
32a5b6b5bbeeb0419b8a2da5e2db074131046167f9d5af5a346647a419122342
|
|
3541
4126
|
----------------------------------------------------------------
|
|
3542
4127
|
Used by:
|
|
@@ -3591,6 +4176,37 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
3591
4176
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3592
4177
|
SOFTWARE.
|
|
3593
4178
|
|
|
4179
|
+
33e996382660b2bac31ae8ec48e5dc8ddf44e52ddce0612457301404c9a29111
|
|
4180
|
+
----------------------------------------------------------------
|
|
4181
|
+
Used by:
|
|
4182
|
+
- aes@0.8.4 (LICENSE-MIT)
|
|
4183
|
+
|
|
4184
|
+
Copyright (c) 2018 Artyom Pavlov
|
|
4185
|
+
|
|
4186
|
+
Permission is hereby granted, free of charge, to any
|
|
4187
|
+
person obtaining a copy of this software and associated
|
|
4188
|
+
documentation files (the "Software"), to deal in the
|
|
4189
|
+
Software without restriction, including without
|
|
4190
|
+
limitation the rights to use, copy, modify, merge,
|
|
4191
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
4192
|
+
the Software, and to permit persons to whom the Software
|
|
4193
|
+
is furnished to do so, subject to the following
|
|
4194
|
+
conditions:
|
|
4195
|
+
|
|
4196
|
+
The above copyright notice and this permission notice
|
|
4197
|
+
shall be included in all copies or substantial portions
|
|
4198
|
+
of the Software.
|
|
4199
|
+
|
|
4200
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
4201
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
4202
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
4203
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
4204
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4205
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4206
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
4207
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
4208
|
+
DEALINGS IN THE SOFTWARE.
|
|
4209
|
+
|
|
3594
4210
|
33ed9a8ecf556f161ec5d7e8761712f404d082bf9eeb8f6085d43517b5938be4
|
|
3595
4211
|
----------------------------------------------------------------
|
|
3596
4212
|
Used by:
|
|
@@ -3799,6 +4415,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3799
4415
|
3e1bef82aa0dfee4504ad211f7e4895153e3191db6ab179f94a7e20f990a0b67
|
|
3800
4416
|
----------------------------------------------------------------
|
|
3801
4417
|
Used by:
|
|
4418
|
+
- tokio-util@0.7.19 (LICENSE)
|
|
3802
4419
|
- tokio@1.53.1 (LICENSE)
|
|
3803
4420
|
|
|
3804
4421
|
MIT License
|
|
@@ -3826,6 +4443,8 @@ SOFTWARE.
|
|
|
3826
4443
|
4031faf6212ee74481b2597dc84fb61568d6a732480c3efdf317f2ac83d330b4
|
|
3827
4444
|
----------------------------------------------------------------
|
|
3828
4445
|
Used by:
|
|
4446
|
+
- md-5@0.10.6 (LICENSE-MIT)
|
|
4447
|
+
- sha1@0.10.7 (LICENSE-MIT)
|
|
3829
4448
|
- sha2@0.10.9 (LICENSE-MIT)
|
|
3830
4449
|
|
|
3831
4450
|
Copyright (c) 2006-2009 Graydon Hoare
|
|
@@ -3901,7 +4520,9 @@ SOFTWARE.
|
|
|
3901
4520
|
Used by:
|
|
3902
4521
|
- quinn-proto@0.11.17 (LICENSE-APACHE)
|
|
3903
4522
|
- quinn-udp@0.5.15 (LICENSE-APACHE)
|
|
4523
|
+
- quinn-udp@0.6.1 (LICENSE-APACHE)
|
|
3904
4524
|
- quinn@0.11.11 (LICENSE-APACHE)
|
|
4525
|
+
- substring@1.4.5 (LICENSE-APACHE)
|
|
3905
4526
|
|
|
3906
4527
|
Apache License
|
|
3907
4528
|
Version 2.0, January 2004
|
|
@@ -4141,27 +4762,234 @@ DEALINGS IN THE SOFTWARE.
|
|
|
4141
4762
|
Used by:
|
|
4142
4763
|
- moka@0.12.16 (LICENSE-MIT)
|
|
4143
4764
|
|
|
4144
|
-
MIT License
|
|
4765
|
+
MIT License
|
|
4766
|
+
|
|
4767
|
+
Copyright (c) 2020 - 2026 Tatsuya Kawano
|
|
4768
|
+
|
|
4769
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4770
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4771
|
+
in the Software without restriction, including without limitation the rights
|
|
4772
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4773
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4774
|
+
furnished to do so, subject to the following conditions:
|
|
4775
|
+
|
|
4776
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4777
|
+
copies or substantial portions of the Software.
|
|
4778
|
+
|
|
4779
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4780
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4781
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4782
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4783
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4784
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4785
|
+
SOFTWARE.
|
|
4786
|
+
|
|
4787
|
+
468044e890b145b08173df5ec8146781d2ebff73f851c6899e16cbc14eeb028d
|
|
4788
|
+
----------------------------------------------------------------
|
|
4789
|
+
Used by:
|
|
4790
|
+
- crc@3.4.0 (LICENSE-APACHE)
|
|
4791
|
+
|
|
4792
|
+
Apache License
|
|
4793
|
+
Version 2.0 January 2004
|
|
4794
|
+
http://www.apache.org/licenses/
|
|
4795
|
+
|
|
4796
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
4797
|
+
|
|
4798
|
+
1. Definitions.
|
|
4799
|
+
|
|
4800
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
4801
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
4802
|
+
|
|
4803
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
4804
|
+
the copyright owner that is granting the License.
|
|
4805
|
+
|
|
4806
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
4807
|
+
other entities that control, are controlled by, or are under common
|
|
4808
|
+
control with that entity. For the purposes of this definition,
|
|
4809
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
4810
|
+
direction or management of such entity, whether by contract or
|
|
4811
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
4812
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
4813
|
+
|
|
4814
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
4815
|
+
exercising permissions granted by this License.
|
|
4816
|
+
|
|
4817
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
4818
|
+
including but not limited to software source code, documentation
|
|
4819
|
+
source, and configuration files.
|
|
4820
|
+
|
|
4821
|
+
"Object" form shall mean any form resulting from mechanical
|
|
4822
|
+
transformation or translation of a Source form, including but
|
|
4823
|
+
not limited to compiled object code, generated documentation,
|
|
4824
|
+
and conversions to other media types.
|
|
4825
|
+
|
|
4826
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
4827
|
+
Object form, made available under the License, as indicated by a
|
|
4828
|
+
copyright notice that is included in or attached to the work
|
|
4829
|
+
(an example is provided in the Appendix below).
|
|
4830
|
+
|
|
4831
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
4832
|
+
form, that is based on (or derived from) the Work and for which the
|
|
4833
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
4834
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
4835
|
+
of this License, Derivative Works shall not include works that remain
|
|
4836
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
4837
|
+
the Work and Derivative Works thereof.
|
|
4838
|
+
|
|
4839
|
+
"Contribution" shall mean any work of authorship, including
|
|
4840
|
+
the original version of the Work and any modifications or additions
|
|
4841
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
4842
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
4843
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
4844
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
4845
|
+
means any form of electronic, verbal, or written communication sent
|
|
4846
|
+
to the Licensor or its representatives, including but not limited to
|
|
4847
|
+
communication on electronic mailing lists, source code control systems,
|
|
4848
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
4849
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
4850
|
+
excluding communication that is conspicuously marked or otherwise
|
|
4851
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
4852
|
+
|
|
4853
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
4854
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
4855
|
+
subsequently incorporated within the Work.
|
|
4856
|
+
|
|
4857
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
4858
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
4859
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
4860
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
4861
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
4862
|
+
Work and such Derivative Works in Source or Object form.
|
|
4863
|
+
|
|
4864
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
4865
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
4866
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
4867
|
+
(except as stated in this section) patent license to make, have made,
|
|
4868
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
4869
|
+
where such license applies only to those patent claims licensable
|
|
4870
|
+
by such Contributor that are necessarily infringed by their
|
|
4871
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
4872
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
4873
|
+
institute patent litigation against any entity (including a
|
|
4874
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
4875
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
4876
|
+
or contributory patent infringement, then any patent licenses
|
|
4877
|
+
granted to You under this License for that Work shall terminate
|
|
4878
|
+
as of the date such litigation is filed.
|
|
4879
|
+
|
|
4880
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
4881
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
4882
|
+
modifications, and in Source or Object form, provided that You
|
|
4883
|
+
meet the following conditions:
|
|
4884
|
+
|
|
4885
|
+
(a) You must give any other recipients of the Work or
|
|
4886
|
+
Derivative Works a copy of this License; and
|
|
4887
|
+
|
|
4888
|
+
(b) You must cause any modified files to carry prominent notices
|
|
4889
|
+
stating that You changed the files; and
|
|
4890
|
+
|
|
4891
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
4892
|
+
that You distribute, all copyright, patent, trademark, and
|
|
4893
|
+
attribution notices from the Source form of the Work,
|
|
4894
|
+
excluding those notices that do not pertain to any part of
|
|
4895
|
+
the Derivative Works; and
|
|
4896
|
+
|
|
4897
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
4898
|
+
distribution, then any Derivative Works that You distribute must
|
|
4899
|
+
include a readable copy of the attribution notices contained
|
|
4900
|
+
within such NOTICE file, excluding those notices that do not
|
|
4901
|
+
pertain to any part of the Derivative Works, in at least one
|
|
4902
|
+
of the following places: within a NOTICE text file distributed
|
|
4903
|
+
as part of the Derivative Works; within the Source form or
|
|
4904
|
+
documentation, if provided along with the Derivative Works; or,
|
|
4905
|
+
within a display generated by the Derivative Works, if and
|
|
4906
|
+
wherever such third-party notices normally appear. The contents
|
|
4907
|
+
of the NOTICE file are for informational purposes only and
|
|
4908
|
+
do not modify the License. You may add Your own attribution
|
|
4909
|
+
notices within Derivative Works that You distribute, alongside
|
|
4910
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
4911
|
+
that such additional attribution notices cannot be construed
|
|
4912
|
+
as modifying the License.
|
|
4913
|
+
|
|
4914
|
+
You may add Your own copyright statement to Your modifications and
|
|
4915
|
+
may provide additional or different license terms and conditions
|
|
4916
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
4917
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
4918
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
4919
|
+
the conditions stated in this License.
|
|
4920
|
+
|
|
4921
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
4922
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
4923
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
4924
|
+
this License, without any additional terms or conditions.
|
|
4925
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
4926
|
+
the terms of any separate license agreement you may have executed
|
|
4927
|
+
with Licensor regarding such Contributions.
|
|
4928
|
+
|
|
4929
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
4930
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
4931
|
+
except as required for reasonable and customary use in describing the
|
|
4932
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
4933
|
+
|
|
4934
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
4935
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
4936
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
4937
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
4938
|
+
implied, including, without limitation, any warranties or conditions
|
|
4939
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
4940
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
4941
|
+
appropriateness of using or redistributing the Work and assume any
|
|
4942
|
+
risks associated with Your exercise of permissions under this License.
|
|
4943
|
+
|
|
4944
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
4945
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
4946
|
+
unless required by applicable law (such as deliberate and grossly
|
|
4947
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
4948
|
+
liable to You for damages, including any direct, indirect, special,
|
|
4949
|
+
incidental, or consequential damages of any character arising as a
|
|
4950
|
+
result of this License or out of the use or inability to use the
|
|
4951
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
4952
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
4953
|
+
other commercial damages or losses), even if such Contributor
|
|
4954
|
+
has been advised of the possibility of such damages.
|
|
4955
|
+
|
|
4956
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
4957
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
4958
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
4959
|
+
or other liability obligations and/or rights consistent with this
|
|
4960
|
+
License. However, in accepting such obligations, You may act only
|
|
4961
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
4962
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
4963
|
+
defend, and hold each Contributor harmless for any liability
|
|
4964
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
4965
|
+
of your accepting any such warranty or additional liability.
|
|
4966
|
+
|
|
4967
|
+
END OF TERMS AND CONDITIONS
|
|
4145
4968
|
|
|
4146
|
-
|
|
4969
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
4147
4970
|
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4971
|
+
To apply the Apache License to your work, attach the following
|
|
4972
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
4973
|
+
replaced with your own identifying information. (Don't include
|
|
4974
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
4975
|
+
comment syntax for the file format. We also recommend that a
|
|
4976
|
+
file or class name and description of purpose be included on the
|
|
4977
|
+
same "printed page" as the copyright notice for easier
|
|
4978
|
+
identification within third-party archives.
|
|
4154
4979
|
|
|
4155
|
-
|
|
4156
|
-
copies or substantial portions of the Software.
|
|
4980
|
+
Copyright [yyyy] [name of copyright owner]
|
|
4157
4981
|
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4982
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4983
|
+
you may not use this file except in compliance with the License.
|
|
4984
|
+
You may obtain a copy of the License at
|
|
4985
|
+
|
|
4986
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
4987
|
+
|
|
4988
|
+
Unless required by applicable law or agreed to in writing, software
|
|
4989
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
4990
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4991
|
+
See the License for the specific language governing permissions and
|
|
4992
|
+
limitations under the License.
|
|
4165
4993
|
|
|
4166
4994
|
47248d1ec833e0771ddacb65f2cf9978785f4a9976b5b0b69d1e33c60a50be55
|
|
4167
4995
|
----------------------------------------------------------------
|
|
@@ -4240,6 +5068,33 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
4240
5068
|
|
|
4241
5069
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4242
5070
|
|
|
5071
|
+
48d36a6709db4f01ec2b5d9130df3981192fd7c232bbb9c216626e550a0876dc
|
|
5072
|
+
----------------------------------------------------------------
|
|
5073
|
+
Used by:
|
|
5074
|
+
- async-broadcast@0.7.2 (LICENSE-MIT)
|
|
5075
|
+
|
|
5076
|
+
The MIT License (MIT)
|
|
5077
|
+
|
|
5078
|
+
Copyright (c) 2020 Yoshua Wuyts
|
|
5079
|
+
|
|
5080
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5081
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5082
|
+
in the Software without restriction, including without limitation the rights
|
|
5083
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5084
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5085
|
+
furnished to do so, subject to the following conditions:
|
|
5086
|
+
|
|
5087
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5088
|
+
copies or substantial portions of the Software.
|
|
5089
|
+
|
|
5090
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5091
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5092
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5093
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5094
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5095
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5096
|
+
SOFTWARE.
|
|
5097
|
+
|
|
4243
5098
|
4cc06db819dd6df0c08283e07e42e62b5e200c095b61fd533a157484814c47c8
|
|
4244
5099
|
----------------------------------------------------------------
|
|
4245
5100
|
Used by:
|
|
@@ -5235,16 +6090,41 @@ Used by:
|
|
|
5235
6090
|
59013a5c8d3a19c26a457579105915a5d51bb0c09d579f8cdedf12e4203c3018
|
|
5236
6091
|
----------------------------------------------------------------
|
|
5237
6092
|
Used by:
|
|
6093
|
+
- aead@0.5.2 (LICENSE-APACHE)
|
|
6094
|
+
- aes@0.8.4 (LICENSE-APACHE)
|
|
5238
6095
|
- asn1-rs-impl@0.2.0 (Apache-2.0.txt)
|
|
5239
6096
|
- block-buffer@0.10.4 (LICENSE-APACHE)
|
|
6097
|
+
- ccm@0.5.0 (LICENSE-APACHE)
|
|
5240
6098
|
- chacha20@0.10.1 (LICENSE-APACHE)
|
|
6099
|
+
- cipher@0.4.4 (LICENSE-APACHE)
|
|
5241
6100
|
- cpufeatures@0.2.17 (LICENSE-APACHE)
|
|
5242
6101
|
- cpufeatures@0.3.0 (LICENSE-APACHE)
|
|
6102
|
+
- crc-catalog@2.5.0 (Apache-2.0.txt)
|
|
6103
|
+
- crc32c@0.6.8 (Apache-2.0.txt)
|
|
5243
6104
|
- crypto-common@0.1.7 (LICENSE-APACHE)
|
|
6105
|
+
- ctr@0.9.2 (LICENSE-APACHE)
|
|
5244
6106
|
- digest@0.10.7 (LICENSE-APACHE)
|
|
5245
6107
|
- hkdf@0.12.4 (LICENSE-APACHE)
|
|
5246
6108
|
- hmac@0.12.1 (LICENSE-APACHE)
|
|
5247
6109
|
- if-watch@3.2.2 (Apache-2.0.txt)
|
|
6110
|
+
- inout@0.1.4 (LICENSE-APACHE)
|
|
6111
|
+
- md-5@0.10.6 (LICENSE-APACHE)
|
|
6112
|
+
- rtc-crypto@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6113
|
+
- rtc-datachannel@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6114
|
+
- rtc-dtls@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6115
|
+
- rtc-ice@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6116
|
+
- rtc-interceptor@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6117
|
+
- rtc-mdns@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6118
|
+
- rtc-media@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6119
|
+
- rtc-rtcp@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6120
|
+
- rtc-rtp@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6121
|
+
- rtc-sctp@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6122
|
+
- rtc-sdp@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6123
|
+
- rtc-shared@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6124
|
+
- rtc-srtp@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6125
|
+
- rtc-stun@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6126
|
+
- rtc-turn@0.21.0-rc.1 (Apache-2.0.txt)
|
|
6127
|
+
- sha1@0.10.7 (LICENSE-APACHE)
|
|
5248
6128
|
- sha2@0.10.9 (LICENSE-APACHE)
|
|
5249
6129
|
- signature@2.2.0 (LICENSE-APACHE)
|
|
5250
6130
|
- uint@0.10.1 (Apache-2.0.txt)
|
|
@@ -6566,93 +7446,289 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
|
6566
7446
|
(b) You must cause any modified files to carry prominent notices
|
|
6567
7447
|
stating that You changed the files; and
|
|
6568
7448
|
|
|
6569
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
6570
|
-
that You distribute, all copyright, patent, trademark, and
|
|
6571
|
-
attribution notices from the Source form of the Work,
|
|
6572
|
-
excluding those notices that do not pertain to any part of
|
|
6573
|
-
the Derivative Works; and
|
|
7449
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
7450
|
+
that You distribute, all copyright, patent, trademark, and
|
|
7451
|
+
attribution notices from the Source form of the Work,
|
|
7452
|
+
excluding those notices that do not pertain to any part of
|
|
7453
|
+
the Derivative Works; and
|
|
7454
|
+
|
|
7455
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
7456
|
+
distribution, then any Derivative Works that You distribute must
|
|
7457
|
+
include a readable copy of the attribution notices contained
|
|
7458
|
+
within such NOTICE file, excluding those notices that do not
|
|
7459
|
+
pertain to any part of the Derivative Works, in at least one
|
|
7460
|
+
of the following places: within a NOTICE text file distributed
|
|
7461
|
+
as part of the Derivative Works; within the Source form or
|
|
7462
|
+
documentation, if provided along with the Derivative Works; or,
|
|
7463
|
+
within a display generated by the Derivative Works, if and
|
|
7464
|
+
wherever such third-party notices normally appear. The contents
|
|
7465
|
+
of the NOTICE file are for informational purposes only and
|
|
7466
|
+
do not modify the License. You may add Your own attribution
|
|
7467
|
+
notices within Derivative Works that You distribute, alongside
|
|
7468
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
7469
|
+
that such additional attribution notices cannot be construed
|
|
7470
|
+
as modifying the License.
|
|
7471
|
+
|
|
7472
|
+
You may add Your own copyright statement to Your modifications and
|
|
7473
|
+
may provide additional or different license terms and conditions
|
|
7474
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
7475
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
7476
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
7477
|
+
the conditions stated in this License.
|
|
7478
|
+
|
|
7479
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
7480
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
7481
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
7482
|
+
this License, without any additional terms or conditions.
|
|
7483
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
7484
|
+
the terms of any separate license agreement you may have executed
|
|
7485
|
+
with Licensor regarding such Contributions.
|
|
7486
|
+
|
|
7487
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
7488
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
7489
|
+
except as required for reasonable and customary use in describing the
|
|
7490
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
7491
|
+
|
|
7492
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
7493
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
7494
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
7495
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
7496
|
+
implied, including, without limitation, any warranties or conditions
|
|
7497
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
7498
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
7499
|
+
appropriateness of using or redistributing the Work and assume any
|
|
7500
|
+
risks associated with Your exercise of permissions under this License.
|
|
7501
|
+
|
|
7502
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
7503
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
7504
|
+
unless required by applicable law (such as deliberate and grossly
|
|
7505
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
7506
|
+
liable to You for damages, including any direct, indirect, special,
|
|
7507
|
+
incidental, or consequential damages of any character arising as a
|
|
7508
|
+
result of this License or out of the use or inability to use the
|
|
7509
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
7510
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
7511
|
+
other commercial damages or losses), even if such Contributor
|
|
7512
|
+
has been advised of the possibility of such damages.
|
|
7513
|
+
|
|
7514
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
7515
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
7516
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
7517
|
+
or other liability obligations and/or rights consistent with this
|
|
7518
|
+
License. However, in accepting such obligations, You may act only
|
|
7519
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
7520
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
7521
|
+
defend, and hold each Contributor harmless for any liability
|
|
7522
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
7523
|
+
of your accepting any such warranty or additional liability.
|
|
7524
|
+
|
|
7525
|
+
END OF TERMS AND CONDITIONS
|
|
7526
|
+
|
|
7527
|
+
65314a6c96683f76f7495709bb0ddecb4eaa6fa244b28f23c4812ef8e5524066
|
|
7528
|
+
----------------------------------------------------------------
|
|
7529
|
+
Used by:
|
|
7530
|
+
- byteorder@1.5.0 (COPYING)
|
|
7531
|
+
- memchr@2.8.3 (COPYING)
|
|
7532
|
+
|
|
7533
|
+
This project is dual-licensed under the Unlicense and MIT licenses.
|
|
7534
|
+
|
|
7535
|
+
You may use this code under the terms of either license.
|
|
7536
|
+
|
|
7537
|
+
65bf6afb9643771ab64b3145d7c11f4977a0b0f088718b3727e9c5256c931553
|
|
7538
|
+
----------------------------------------------------------------
|
|
7539
|
+
Used by:
|
|
7540
|
+
- async-broadcast@0.7.2 (LICENSE-APACHE)
|
|
7541
|
+
|
|
7542
|
+
Apache License
|
|
7543
|
+
Version 2.0, January 2004
|
|
7544
|
+
http://www.apache.org/licenses/
|
|
7545
|
+
|
|
7546
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7547
|
+
|
|
7548
|
+
1. Definitions.
|
|
7549
|
+
|
|
7550
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
7551
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
7552
|
+
|
|
7553
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
7554
|
+
the copyright owner that is granting the License.
|
|
7555
|
+
|
|
7556
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
7557
|
+
other entities that control, are controlled by, or are under common
|
|
7558
|
+
control with that entity. For the purposes of this definition,
|
|
7559
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
7560
|
+
direction or management of such entity, whether by contract or
|
|
7561
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
7562
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
7563
|
+
|
|
7564
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
7565
|
+
exercising permissions granted by this License.
|
|
7566
|
+
|
|
7567
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
7568
|
+
including but not limited to software source code, documentation
|
|
7569
|
+
source, and configuration files.
|
|
7570
|
+
|
|
7571
|
+
"Object" form shall mean any form resulting from mechanical
|
|
7572
|
+
transformation or translation of a Source form, including but
|
|
7573
|
+
not limited to compiled object code, generated documentation,
|
|
7574
|
+
and conversions to other media types.
|
|
7575
|
+
|
|
7576
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
7577
|
+
Object form, made available under the License, as indicated by a
|
|
7578
|
+
copyright notice that is included in or attached to the work
|
|
7579
|
+
(an example is provided in the Appendix below).
|
|
7580
|
+
|
|
7581
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
7582
|
+
form, that is based on (or derived from) the Work and for which the
|
|
7583
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
7584
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
7585
|
+
of this License, Derivative Works shall not include works that remain
|
|
7586
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
7587
|
+
the Work and Derivative Works thereof.
|
|
7588
|
+
|
|
7589
|
+
"Contribution" shall mean any work of authorship, including
|
|
7590
|
+
the original version of the Work and any modifications or additions
|
|
7591
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
7592
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
7593
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
7594
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
7595
|
+
means any form of electronic, verbal, or written communication sent
|
|
7596
|
+
to the Licensor or its representatives, including but not limited to
|
|
7597
|
+
communication on electronic mailing lists, source code control systems,
|
|
7598
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
7599
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
7600
|
+
excluding communication that is conspicuously marked or otherwise
|
|
7601
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
7602
|
+
|
|
7603
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
7604
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
7605
|
+
subsequently incorporated within the Work.
|
|
7606
|
+
|
|
7607
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
7608
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
7609
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
7610
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
7611
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
7612
|
+
Work and such Derivative Works in Source or Object form.
|
|
7613
|
+
|
|
7614
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
7615
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
7616
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
7617
|
+
(except as stated in this section) patent license to make, have made,
|
|
7618
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
7619
|
+
where such license applies only to those patent claims licensable
|
|
7620
|
+
by such Contributor that are necessarily infringed by their
|
|
7621
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
7622
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
7623
|
+
institute patent litigation against any entity (including a
|
|
7624
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
7625
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
7626
|
+
or contributory patent infringement, then any patent licenses
|
|
7627
|
+
granted to You under this License for that Work shall terminate
|
|
7628
|
+
as of the date such litigation is filed.
|
|
7629
|
+
|
|
7630
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
7631
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
7632
|
+
modifications, and in Source or Object form, provided that You
|
|
7633
|
+
meet the following conditions:
|
|
7634
|
+
|
|
7635
|
+
(a) You must give any other recipients of the Work or
|
|
7636
|
+
Derivative Works a copy of this License; and
|
|
7637
|
+
|
|
7638
|
+
(b) You must cause any modified files to carry prominent notices
|
|
7639
|
+
stating that You changed the files; and
|
|
7640
|
+
|
|
7641
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
7642
|
+
that You distribute, all copyright, patent, trademark, and
|
|
7643
|
+
attribution notices from the Source form of the Work,
|
|
7644
|
+
excluding those notices that do not pertain to any part of
|
|
7645
|
+
the Derivative Works; and
|
|
7646
|
+
|
|
7647
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
7648
|
+
distribution, then any Derivative Works that You distribute must
|
|
7649
|
+
include a readable copy of the attribution notices contained
|
|
7650
|
+
within such NOTICE file, excluding those notices that do not
|
|
7651
|
+
pertain to any part of the Derivative Works, in at least one
|
|
7652
|
+
of the following places: within a NOTICE text file distributed
|
|
7653
|
+
as part of the Derivative Works; within the Source form or
|
|
7654
|
+
documentation, if provided along with the Derivative Works; or,
|
|
7655
|
+
within a display generated by the Derivative Works, if and
|
|
7656
|
+
wherever such third-party notices normally appear. The contents
|
|
7657
|
+
of the NOTICE file are for informational purposes only and
|
|
7658
|
+
do not modify the License. You may add Your own attribution
|
|
7659
|
+
notices within Derivative Works that You distribute, alongside
|
|
7660
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
7661
|
+
that such additional attribution notices cannot be construed
|
|
7662
|
+
as modifying the License.
|
|
6574
7663
|
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
as part of the Derivative Works; within the Source form or
|
|
6582
|
-
documentation, if provided along with the Derivative Works; or,
|
|
6583
|
-
within a display generated by the Derivative Works, if and
|
|
6584
|
-
wherever such third-party notices normally appear. The contents
|
|
6585
|
-
of the NOTICE file are for informational purposes only and
|
|
6586
|
-
do not modify the License. You may add Your own attribution
|
|
6587
|
-
notices within Derivative Works that You distribute, alongside
|
|
6588
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
6589
|
-
that such additional attribution notices cannot be construed
|
|
6590
|
-
as modifying the License.
|
|
7664
|
+
You may add Your own copyright statement to Your modifications and
|
|
7665
|
+
may provide additional or different license terms and conditions
|
|
7666
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
7667
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
7668
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
7669
|
+
the conditions stated in this License.
|
|
6591
7670
|
|
|
6592
|
-
|
|
6593
|
-
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
7671
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
7672
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
7673
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
7674
|
+
this License, without any additional terms or conditions.
|
|
7675
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
7676
|
+
the terms of any separate license agreement you may have executed
|
|
7677
|
+
with Licensor regarding such Contributions.
|
|
6598
7678
|
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
6604
|
-
the terms of any separate license agreement you may have executed
|
|
6605
|
-
with Licensor regarding such Contributions.
|
|
7679
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
7680
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
7681
|
+
except as required for reasonable and customary use in describing the
|
|
7682
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
6606
7683
|
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
7684
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
7685
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
7686
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
7687
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
7688
|
+
implied, including, without limitation, any warranties or conditions
|
|
7689
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
7690
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
7691
|
+
appropriateness of using or redistributing the Work and assume any
|
|
7692
|
+
risks associated with Your exercise of permissions under this License.
|
|
6611
7693
|
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
|
|
7694
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
7695
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
7696
|
+
unless required by applicable law (such as deliberate and grossly
|
|
7697
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
7698
|
+
liable to You for damages, including any direct, indirect, special,
|
|
7699
|
+
incidental, or consequential damages of any character arising as a
|
|
7700
|
+
result of this License or out of the use or inability to use the
|
|
7701
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
7702
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
7703
|
+
other commercial damages or losses), even if such Contributor
|
|
7704
|
+
has been advised of the possibility of such damages.
|
|
6621
7705
|
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
|
|
6631
|
-
|
|
6632
|
-
has been advised of the possibility of such damages.
|
|
7706
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
7707
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
7708
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
7709
|
+
or other liability obligations and/or rights consistent with this
|
|
7710
|
+
License. However, in accepting such obligations, You may act only
|
|
7711
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
7712
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
7713
|
+
defend, and hold each Contributor harmless for any liability
|
|
7714
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
7715
|
+
of your accepting any such warranty or additional liability.
|
|
6633
7716
|
|
|
6634
|
-
|
|
6635
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
6636
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
6637
|
-
or other liability obligations and/or rights consistent with this
|
|
6638
|
-
License. However, in accepting such obligations, You may act only
|
|
6639
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
6640
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
6641
|
-
defend, and hold each Contributor harmless for any liability
|
|
6642
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
6643
|
-
of your accepting any such warranty or additional liability.
|
|
7717
|
+
END OF TERMS AND CONDITIONS
|
|
6644
7718
|
|
|
6645
|
-
|
|
7719
|
+
Copyright 2020 Yoshua Wuyts
|
|
6646
7720
|
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
- byteorder@1.5.0 (COPYING)
|
|
6651
|
-
- memchr@2.8.3 (COPYING)
|
|
7721
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
7722
|
+
you may not use this file except in compliance with the License.
|
|
7723
|
+
You may obtain a copy of the License at
|
|
6652
7724
|
|
|
6653
|
-
|
|
7725
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
6654
7726
|
|
|
6655
|
-
|
|
7727
|
+
Unless required by applicable law or agreed to in writing, software
|
|
7728
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
7729
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
7730
|
+
See the License for the specific language governing permissions and
|
|
7731
|
+
limitations under the License.
|
|
6656
7732
|
|
|
6657
7733
|
66b593f9d3287f8e8f9803183f57dcea03f1e427089918cc1d600804b8420692
|
|
6658
7734
|
----------------------------------------------------------------
|
|
@@ -7125,6 +8201,33 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
|
7125
8201
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
7126
8202
|
DEALINGS IN THE SOFTWARE.
|
|
7127
8203
|
|
|
8204
|
+
695546eaa4b06e1a70c5d92eec183f4108dd416224c5c7eed3d0303423596993
|
|
8205
|
+
----------------------------------------------------------------
|
|
8206
|
+
Used by:
|
|
8207
|
+
- substring@1.4.5 (LICENSE-MIT)
|
|
8208
|
+
|
|
8209
|
+
MIT License
|
|
8210
|
+
|
|
8211
|
+
Copyright (c) 2021 Anders Evensen
|
|
8212
|
+
|
|
8213
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8214
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8215
|
+
in the Software without restriction, including without limitation the rights
|
|
8216
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8217
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8218
|
+
furnished to do so, subject to the following conditions:
|
|
8219
|
+
|
|
8220
|
+
The above copyright notice and this permission notice shall be included in all
|
|
8221
|
+
copies or substantial portions of the Software.
|
|
8222
|
+
|
|
8223
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8224
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8225
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8226
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8227
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8228
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8229
|
+
SOFTWARE.
|
|
8230
|
+
|
|
7128
8231
|
6a8da4c78c729176907b068222cc6e8e612b09c7345628c98cbceb22c0f06979
|
|
7129
8232
|
----------------------------------------------------------------
|
|
7130
8233
|
Used by:
|
|
@@ -7152,6 +8255,48 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
7152
8255
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
7153
8256
|
THE SOFTWARE.
|
|
7154
8257
|
|
|
8258
|
+
6c20917694e80c18e344457d73162f5484985e05f443e0db92d960d6e83630c5
|
|
8259
|
+
----------------------------------------------------------------
|
|
8260
|
+
Used by:
|
|
8261
|
+
- rtc@0.21.0-rc.1 (LICENSE-MIT)
|
|
8262
|
+
- sansio@1.0.1 (LICENSE-MIT)
|
|
8263
|
+
- webrtc@0.21.0-rc.1 (LICENSE-MIT)
|
|
8264
|
+
|
|
8265
|
+
MIT License
|
|
8266
|
+
|
|
8267
|
+
Copyright (c) 2021 WebRTC.rs
|
|
8268
|
+
|
|
8269
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8270
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8271
|
+
in the Software without restriction, including without limitation the rights
|
|
8272
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8273
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8274
|
+
furnished to do so, subject to the following conditions:
|
|
8275
|
+
|
|
8276
|
+
The above copyright notice and this permission notice shall be included in all
|
|
8277
|
+
copies or substantial portions of the Software.
|
|
8278
|
+
|
|
8279
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8280
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8281
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8282
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8283
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8284
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8285
|
+
SOFTWARE.
|
|
8286
|
+
|
|
8287
|
+
6cb29bf78c6e512c65df670da014b3e1ee04a1db1f0adffd8147c21e25696241
|
|
8288
|
+
----------------------------------------------------------------
|
|
8289
|
+
Used by:
|
|
8290
|
+
- bytecheck_derive@0.8.3 (LICENSE)
|
|
8291
|
+
|
|
8292
|
+
Copyright 2020 David Koloski
|
|
8293
|
+
|
|
8294
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8295
|
+
|
|
8296
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8297
|
+
|
|
8298
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8299
|
+
|
|
7155
8300
|
6dc0e068dcf3a5bc8e054205b85b7720e1d49265bbc64bf515d2cf79197df69a
|
|
7156
8301
|
----------------------------------------------------------------
|
|
7157
8302
|
Used by:
|
|
@@ -7415,6 +8560,38 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
|
7415
8560
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
7416
8561
|
DEALINGS IN THE SOFTWARE.
|
|
7417
8562
|
|
|
8563
|
+
71366a4092ad07b6fc29c4aa94ceeac8b892f7a24fcdedf8df7cba8112cdc15b
|
|
8564
|
+
----------------------------------------------------------------
|
|
8565
|
+
Used by:
|
|
8566
|
+
- inout@0.1.4 (LICENSE-MIT)
|
|
8567
|
+
|
|
8568
|
+
Copyright (c) 2022 The RustCrypto Project Developers
|
|
8569
|
+
Copyright (c) 2022 Artyom Pavlov
|
|
8570
|
+
|
|
8571
|
+
Permission is hereby granted, free of charge, to any
|
|
8572
|
+
person obtaining a copy of this software and associated
|
|
8573
|
+
documentation files (the "Software"), to deal in the
|
|
8574
|
+
Software without restriction, including without
|
|
8575
|
+
limitation the rights to use, copy, modify, merge,
|
|
8576
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
8577
|
+
the Software, and to permit persons to whom the Software
|
|
8578
|
+
is furnished to do so, subject to the following
|
|
8579
|
+
conditions:
|
|
8580
|
+
|
|
8581
|
+
The above copyright notice and this permission notice
|
|
8582
|
+
shall be included in all copies or substantial portions
|
|
8583
|
+
of the Software.
|
|
8584
|
+
|
|
8585
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
8586
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
8587
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
8588
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
8589
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
8590
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
8591
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
8592
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
8593
|
+
DEALINGS IN THE SOFTWARE.
|
|
8594
|
+
|
|
7418
8595
|
72de958052e494b0882a16da141b5524dcc8b87153a3a86323ab2e3dc1fc03a1
|
|
7419
8596
|
----------------------------------------------------------------
|
|
7420
8597
|
Used by:
|
|
@@ -7670,6 +8847,20 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
|
7670
8847
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
7671
8848
|
DEALINGS IN THE SOFTWARE.
|
|
7672
8849
|
|
|
8850
|
+
75114f300a13994eaf147b93a628116ecd1bb2a3a948e3244ca5737062ed2e7f
|
|
8851
|
+
----------------------------------------------------------------
|
|
8852
|
+
Used by:
|
|
8853
|
+
- bytecheck@0.8.3 (LICENSE)
|
|
8854
|
+
- rancor@0.1.3 (LICENSE)
|
|
8855
|
+
|
|
8856
|
+
Copyright 2023 David Koloski
|
|
8857
|
+
|
|
8858
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8859
|
+
|
|
8860
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8861
|
+
|
|
8862
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8863
|
+
|
|
7673
8864
|
75a373c5dfcd3e039b748b325a86cd31b7646e0bba51c00a5eeb82bf276c25e1
|
|
7674
8865
|
----------------------------------------------------------------
|
|
7675
8866
|
Used by:
|
|
@@ -7880,14 +9071,20 @@ Used by:
|
|
|
7880
9071
|
769f80b5bcb42ed0af4e4d2fd74e1ac9bf843cb80c5a29219d1ef3544428a6bb
|
|
7881
9072
|
----------------------------------------------------------------
|
|
7882
9073
|
Used by:
|
|
9074
|
+
- asn1-rs-derive@0.5.1 (LICENSE-APACHE)
|
|
7883
9075
|
- asn1-rs-derive@0.6.0 (LICENSE-APACHE)
|
|
9076
|
+
- asn1-rs@0.6.2 (LICENSE-APACHE)
|
|
7884
9077
|
- asn1-rs@0.7.2 (LICENSE-APACHE)
|
|
9078
|
+
- async-channel@2.5.0 (LICENSE-APACHE)
|
|
7885
9079
|
- autocfg@1.5.1 (LICENSE-APACHE)
|
|
7886
9080
|
- base64@0.22.1 (LICENSE-APACHE)
|
|
9081
|
+
- base64@0.23.1 (LICENSE-APACHE)
|
|
9082
|
+
- bitflags@1.3.2 (LICENSE-APACHE)
|
|
7887
9083
|
- bitflags@2.13.1 (LICENSE-APACHE)
|
|
7888
9084
|
- bs58@0.5.1 (LICENSE-APACHE)
|
|
7889
9085
|
- cc@1.4.4 (LICENSE-APACHE)
|
|
7890
9086
|
- cfg-if@1.0.4 (LICENSE-APACHE)
|
|
9087
|
+
- concurrent-queue@2.5.0 (LICENSE-APACHE)
|
|
7891
9088
|
- core-foundation-sys@0.8.7 (LICENSE-APACHE)
|
|
7892
9089
|
- core-foundation@0.9.4 (LICENSE-APACHE)
|
|
7893
9090
|
- critical-section@1.2.0 (LICENSE-APACHE)
|
|
@@ -7896,14 +9093,18 @@ Used by:
|
|
|
7896
9093
|
- crossbeam-utils@0.8.22 (LICENSE-APACHE)
|
|
7897
9094
|
- curve25519-dalek-derive@0.1.1 (LICENSE-APACHE)
|
|
7898
9095
|
- der-parser@10.0.0 (LICENSE-APACHE)
|
|
9096
|
+
- der-parser@9.0.0 (LICENSE-APACHE)
|
|
7899
9097
|
- displaydoc@0.2.7 (LICENSE-APACHE)
|
|
7900
9098
|
- either@1.18.0 (LICENSE-APACHE)
|
|
7901
9099
|
- equivalent@1.0.2 (LICENSE-APACHE)
|
|
9100
|
+
- event-listener-strategy@0.5.4 (LICENSE-APACHE)
|
|
9101
|
+
- event-listener@5.4.2 (LICENSE-APACHE)
|
|
7902
9102
|
- find-msvc-tools@0.1.11 (LICENSE-APACHE)
|
|
7903
9103
|
- fnv@1.0.7 (LICENSE-APACHE)
|
|
7904
9104
|
- form_urlencoded@1.2.2 (LICENSE-APACHE)
|
|
7905
9105
|
- futures-timer@3.0.4 (LICENSE-APACHE)
|
|
7906
9106
|
- hashbrown@0.15.5 (LICENSE-APACHE)
|
|
9107
|
+
- hashbrown@0.17.1 (LICENSE-APACHE)
|
|
7907
9108
|
- heck@0.5.0 (LICENSE-APACHE)
|
|
7908
9109
|
- idna@1.1.0 (LICENSE-APACHE)
|
|
7909
9110
|
- idna_adapter@1.2.2 (LICENSE-APACHE)
|
|
@@ -7915,16 +9116,20 @@ Used by:
|
|
|
7915
9116
|
- num-bigint@0.4.8 (LICENSE-APACHE)
|
|
7916
9117
|
- num-integer@0.1.47 (LICENSE-APACHE)
|
|
7917
9118
|
- num-traits@0.2.19 (LICENSE-APACHE)
|
|
9119
|
+
- oid-registry@0.7.1 (LICENSE-APACHE)
|
|
7918
9120
|
- oid-registry@0.8.1 (LICENSE-APACHE)
|
|
7919
9121
|
- once_cell@1.21.4 (LICENSE-APACHE)
|
|
9122
|
+
- parking@2.2.1 (LICENSE-APACHE)
|
|
7920
9123
|
- parking_lot@0.12.5 (LICENSE-APACHE)
|
|
7921
9124
|
- parking_lot_core@0.9.12 (LICENSE-APACHE)
|
|
7922
9125
|
- percent-encoding@2.3.2 (LICENSE-APACHE)
|
|
7923
9126
|
- prost-derive@0.14.4 (LICENSE)
|
|
7924
9127
|
- prost@0.14.4 (LICENSE)
|
|
9128
|
+
- rtc@0.21.0-rc.1 (LICENSE-APACHE)
|
|
7925
9129
|
- rustc_version@0.4.1 (LICENSE-APACHE)
|
|
7926
9130
|
- rusticata-macros@4.1.0 (LICENSE-APACHE)
|
|
7927
9131
|
- rustls@0.23.43 (LICENSE-APACHE)
|
|
9132
|
+
- sansio@1.0.1 (LICENSE-APACHE)
|
|
7928
9133
|
- scopeguard@1.2.0 (LICENSE-APACHE)
|
|
7929
9134
|
- smallvec@1.15.2 (LICENSE-APACHE)
|
|
7930
9135
|
- socket2@0.5.10 (LICENSE-APACHE)
|
|
@@ -7932,11 +9137,16 @@ Used by:
|
|
|
7932
9137
|
- stable_deref_trait@1.2.1 (LICENSE-APACHE)
|
|
7933
9138
|
- system-configuration-sys@0.6.0 (LICENSE-APACHE)
|
|
7934
9139
|
- system-configuration@0.7.0 (LICENSE-APACHE)
|
|
9140
|
+
- tinytemplate@1.2.1 (LICENSE-APACHE)
|
|
9141
|
+
- unicase@2.9.0 (LICENSE-APACHE)
|
|
7935
9142
|
- unicode-segmentation@1.13.3 (LICENSE-APACHE)
|
|
7936
9143
|
- url@2.5.8 (LICENSE-APACHE)
|
|
7937
9144
|
- uuid@1.25.0 (LICENSE-APACHE)
|
|
7938
9145
|
- version_check@0.9.5 (LICENSE-APACHE)
|
|
9146
|
+
- webrtc@0.21.0-rc.1 (LICENSE-APACHE)
|
|
9147
|
+
- x509-parser@0.16.0 (LICENSE-APACHE)
|
|
7939
9148
|
- x509-parser@0.17.0 (LICENSE-APACHE)
|
|
9149
|
+
- yasna@0.6.0 (LICENSE-APACHE)
|
|
7940
9150
|
|
|
7941
9151
|
Apache License
|
|
7942
9152
|
Version 2.0, January 2004
|
|
@@ -8140,6 +9350,20 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
8140
9350
|
See the License for the specific language governing permissions and
|
|
8141
9351
|
limitations under the License.
|
|
8142
9352
|
|
|
9353
|
+
76e5968f85842714c6a059f78ebf6d3615f0a79e41d0bb115f7ea807508bc41b
|
|
9354
|
+
----------------------------------------------------------------
|
|
9355
|
+
Used by:
|
|
9356
|
+
- munge@0.4.7 (LICENSE)
|
|
9357
|
+
- munge_macro@0.4.7 (LICENSE)
|
|
9358
|
+
|
|
9359
|
+
Copyright 2024 David Koloski
|
|
9360
|
+
|
|
9361
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
9362
|
+
|
|
9363
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
9364
|
+
|
|
9365
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9366
|
+
|
|
8143
9367
|
778f4b3d16272ce197399cbe26419da5559e5c5ea2e04e5a738cb8bf0742237f
|
|
8144
9368
|
----------------------------------------------------------------
|
|
8145
9369
|
Used by:
|
|
@@ -8821,11 +10045,16 @@ DEALINGS IN THE SOFTWARE.
|
|
|
8821
10045
|
9206df1d7be3fb30bcb3e920853805f4984858318d245297209268fac172d5ea
|
|
8822
10046
|
----------------------------------------------------------------
|
|
8823
10047
|
Used by:
|
|
10048
|
+
- asn1-rs-derive@0.5.1 (LICENSE-MIT)
|
|
8824
10049
|
- asn1-rs-derive@0.6.0 (LICENSE-MIT)
|
|
10050
|
+
- asn1-rs@0.6.2 (LICENSE-MIT)
|
|
8825
10051
|
- asn1-rs@0.7.2 (LICENSE-MIT)
|
|
8826
10052
|
- der-parser@10.0.0 (LICENSE-MIT)
|
|
10053
|
+
- der-parser@9.0.0 (LICENSE-MIT)
|
|
10054
|
+
- oid-registry@0.7.1 (LICENSE-MIT)
|
|
8827
10055
|
- oid-registry@0.8.1 (LICENSE-MIT)
|
|
8828
10056
|
- rusticata-macros@4.1.0 (LICENSE-MIT)
|
|
10057
|
+
- x509-parser@0.16.0 (LICENSE-MIT)
|
|
8829
10058
|
- x509-parser@0.17.0 (LICENSE-MIT)
|
|
8830
10059
|
|
|
8831
10060
|
Copyright (c) 2017 Pierre Chifflier
|
|
@@ -9115,6 +10344,37 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
9115
10344
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
9116
10345
|
SOFTWARE.
|
|
9117
10346
|
|
|
10347
|
+
92f01fc7ca904e16f13e27d4897e507b5446e42516bb7efacc4c5ed189008c31
|
|
10348
|
+
----------------------------------------------------------------
|
|
10349
|
+
Used by:
|
|
10350
|
+
- cipher@0.4.4 (LICENSE-MIT)
|
|
10351
|
+
|
|
10352
|
+
Copyright (c) 2016-2020 RustCrypto Developers
|
|
10353
|
+
|
|
10354
|
+
Permission is hereby granted, free of charge, to any
|
|
10355
|
+
person obtaining a copy of this software and associated
|
|
10356
|
+
documentation files (the "Software"), to deal in the
|
|
10357
|
+
Software without restriction, including without
|
|
10358
|
+
limitation the rights to use, copy, modify, merge,
|
|
10359
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
10360
|
+
the Software, and to permit persons to whom the Software
|
|
10361
|
+
is furnished to do so, subject to the following
|
|
10362
|
+
conditions:
|
|
10363
|
+
|
|
10364
|
+
The above copyright notice and this permission notice
|
|
10365
|
+
shall be included in all copies or substantial portions
|
|
10366
|
+
of the Software.
|
|
10367
|
+
|
|
10368
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
10369
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
10370
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
10371
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
10372
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10373
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
10374
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
10375
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
10376
|
+
DEALINGS IN THE SOFTWARE.
|
|
10377
|
+
|
|
9118
10378
|
943f36fd309fb5ea67a82f577433f4ed3bc877e5b00f9b874e2f8b7f72bf0bdc
|
|
9119
10379
|
----------------------------------------------------------------
|
|
9120
10380
|
Used by:
|
|
@@ -9197,6 +10457,7 @@ Used by:
|
|
|
9197
10457
|
- anyhow@1.0.104 (LICENSE-APACHE)
|
|
9198
10458
|
- async-trait@0.1.92 (LICENSE-APACHE)
|
|
9199
10459
|
- fastbloom@0.17.0 (LICENSE-APACHE)
|
|
10460
|
+
- itoa@1.0.18 (LICENSE-APACHE)
|
|
9200
10461
|
- libc@0.2.189 (LICENSE-APACHE)
|
|
9201
10462
|
- paste@1.0.15 (LICENSE-APACHE)
|
|
9202
10463
|
- proc-macro2@1.0.107 (LICENSE-APACHE)
|
|
@@ -9205,6 +10466,8 @@ Used by:
|
|
|
9205
10466
|
- semver@1.0.28 (LICENSE-APACHE)
|
|
9206
10467
|
- serde@1.0.229 (LICENSE-APACHE)
|
|
9207
10468
|
- serde_core@1.0.229 (LICENSE-APACHE)
|
|
10469
|
+
- serde_derive@1.0.229 (LICENSE-APACHE)
|
|
10470
|
+
- serde_json@1.0.151 (LICENSE-APACHE)
|
|
9208
10471
|
- syn@2.0.119 (LICENSE-APACHE)
|
|
9209
10472
|
- syn@3.0.4 (LICENSE-APACHE)
|
|
9210
10473
|
- thiserror-impl@1.0.69 (LICENSE-APACHE)
|
|
@@ -9675,6 +10938,54 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
|
9675
10938
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
9676
10939
|
DEALINGS IN THE SOFTWARE.
|
|
9677
10940
|
|
|
10941
|
+
a427dbea98ffc849b4d8368d97211afdfef816e5c34090e7024a4787299f0e2e
|
|
10942
|
+
----------------------------------------------------------------
|
|
10943
|
+
Used by:
|
|
10944
|
+
- ptr_meta@0.3.2 (LICENSE)
|
|
10945
|
+
- ptr_meta_derive@0.3.2 (LICENSE)
|
|
10946
|
+
- rend@0.5.4 (LICENSE)
|
|
10947
|
+
- rkyv@0.8.18 (LICENSE)
|
|
10948
|
+
- rkyv_derive@0.8.18 (LICENSE)
|
|
10949
|
+
|
|
10950
|
+
Copyright 2021 David Koloski
|
|
10951
|
+
|
|
10952
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
10953
|
+
|
|
10954
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
10955
|
+
|
|
10956
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10957
|
+
|
|
10958
|
+
a6d96dff735a59b9677ddc5d9abd02b2add5632f2c2cce5d3c9e990f4f4fdcad
|
|
10959
|
+
----------------------------------------------------------------
|
|
10960
|
+
Used by:
|
|
10961
|
+
- ccm@0.5.0 (LICENSE-MIT)
|
|
10962
|
+
|
|
10963
|
+
Copyright (c) 2020 The RustCrypto Project Developers
|
|
10964
|
+
|
|
10965
|
+
Permission is hereby granted, free of charge, to any
|
|
10966
|
+
person obtaining a copy of this software and associated
|
|
10967
|
+
documentation files (the "Software"), to deal in the
|
|
10968
|
+
Software without restriction, including without
|
|
10969
|
+
limitation the rights to use, copy, modify, merge,
|
|
10970
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
10971
|
+
the Software, and to permit persons to whom the Software
|
|
10972
|
+
is furnished to do so, subject to the following
|
|
10973
|
+
conditions:
|
|
10974
|
+
|
|
10975
|
+
The above copyright notice and this permission notice
|
|
10976
|
+
shall be included in all copies or substantial portions
|
|
10977
|
+
of the Software.
|
|
10978
|
+
|
|
10979
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
10980
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
10981
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
10982
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
10983
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10984
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
10985
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
10986
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
10987
|
+
DEALINGS IN THE SOFTWARE.
|
|
10988
|
+
|
|
9678
10989
|
a759ce38c686a2042f62a0a6b8ea01781e3447726dcb68f4bb8b9f199feff12e
|
|
9679
10990
|
----------------------------------------------------------------
|
|
9680
10991
|
Used by:
|
|
@@ -9755,57 +11066,277 @@ Used by:
|
|
|
9755
11066
|
|
|
9756
11067
|
Copyright (c) 2017 Liran Ringel
|
|
9757
11068
|
|
|
9758
|
-
Permission is hereby granted, free of charge, to any
|
|
9759
|
-
person obtaining a copy of this software and associated
|
|
9760
|
-
documentation files (the "Software"), to deal in the
|
|
9761
|
-
Software without restriction, including without
|
|
9762
|
-
limitation the rights to use, copy, modify, merge,
|
|
9763
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
9764
|
-
the Software, and to permit persons to whom the Software
|
|
9765
|
-
is furnished to do so, subject to the following
|
|
9766
|
-
conditions:
|
|
11069
|
+
Permission is hereby granted, free of charge, to any
|
|
11070
|
+
person obtaining a copy of this software and associated
|
|
11071
|
+
documentation files (the "Software"), to deal in the
|
|
11072
|
+
Software without restriction, including without
|
|
11073
|
+
limitation the rights to use, copy, modify, merge,
|
|
11074
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
11075
|
+
the Software, and to permit persons to whom the Software
|
|
11076
|
+
is furnished to do so, subject to the following
|
|
11077
|
+
conditions:
|
|
11078
|
+
|
|
11079
|
+
The above copyright notice and this permission notice
|
|
11080
|
+
shall be included in all copies or substantial portions
|
|
11081
|
+
of the Software.
|
|
11082
|
+
|
|
11083
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
11084
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
11085
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
11086
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
11087
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
11088
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
11089
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
11090
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
11091
|
+
DEALINGS IN THE SOFTWARE.
|
|
11092
|
+
|
|
11093
|
+
aa3694cfba33f6e8650271dd0ff84f6a33da5705d60dff84dcfcb3f9a2c0fdd3
|
|
11094
|
+
----------------------------------------------------------------
|
|
11095
|
+
Used by:
|
|
11096
|
+
- multiaddr@0.18.2 (LICENSE)
|
|
11097
|
+
- multihash@0.19.5 (LICENSE)
|
|
11098
|
+
|
|
11099
|
+
The MIT License
|
|
11100
|
+
|
|
11101
|
+
Copyright (C) 2015-2016 Friedel Ziegelmayer
|
|
11102
|
+
|
|
11103
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
11104
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
11105
|
+
the Software without restriction, including without limitation the rights to
|
|
11106
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
11107
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
11108
|
+
so, subject to the following conditions:
|
|
11109
|
+
|
|
11110
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11111
|
+
copies or substantial portions of the Software.
|
|
11112
|
+
|
|
11113
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
11114
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
11115
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
11116
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
11117
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
11118
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
11119
|
+
Status API Training Shop Blog About Pricing
|
|
11120
|
+
|
|
11121
|
+
acce84ab5a3a9cf7d12402e67ab27b916a7c28fe6bf5be92b5d21bb3a088715f
|
|
11122
|
+
----------------------------------------------------------------
|
|
11123
|
+
Used by:
|
|
11124
|
+
- rcgen@0.14.10 (LICENSE)
|
|
11125
|
+
|
|
11126
|
+
Copyright (c) 2019-2026 est31 <MTest31@outlook.com> and contributors
|
|
11127
|
+
|
|
11128
|
+
Licensed under MIT or Apache License 2.0,
|
|
11129
|
+
at your option.
|
|
11130
|
+
|
|
11131
|
+
The full list of contributors can be obtained by looking
|
|
11132
|
+
at the VCS log (originally, this crate was git versioned,
|
|
11133
|
+
there you can do "git shortlog -sn" for this task).
|
|
11134
|
+
|
|
11135
|
+
MIT License
|
|
11136
|
+
-----------
|
|
11137
|
+
|
|
11138
|
+
The MIT License (MIT)
|
|
11139
|
+
|
|
11140
|
+
Copyright (c) 2019-2026 est31 <MTest31@outlook.com> and contributors
|
|
11141
|
+
|
|
11142
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11143
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11144
|
+
in the Software without restriction, including without limitation the rights
|
|
11145
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11146
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11147
|
+
furnished to do so, subject to the following conditions:
|
|
11148
|
+
|
|
11149
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11150
|
+
copies or substantial portions of the Software.
|
|
11151
|
+
|
|
11152
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
11153
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11154
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
11155
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
11156
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
11157
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
11158
|
+
SOFTWARE.
|
|
11159
|
+
|
|
11160
|
+
|
|
11161
|
+
|
|
11162
|
+
Apache License, version 2.0
|
|
11163
|
+
---------------------------
|
|
11164
|
+
Apache License
|
|
11165
|
+
Version 2.0, January 2004
|
|
11166
|
+
http://www.apache.org/licenses/
|
|
11167
|
+
|
|
11168
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
11169
|
+
|
|
11170
|
+
1. Definitions.
|
|
11171
|
+
|
|
11172
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11173
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11174
|
+
|
|
11175
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
11176
|
+
the copyright owner that is granting the License.
|
|
11177
|
+
|
|
11178
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
11179
|
+
other entities that control, are controlled by, or are under common
|
|
11180
|
+
control with that entity. For the purposes of this definition,
|
|
11181
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
11182
|
+
direction or management of such entity, whether by contract or
|
|
11183
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
11184
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
11185
|
+
|
|
11186
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
11187
|
+
exercising permissions granted by this License.
|
|
11188
|
+
|
|
11189
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
11190
|
+
including but not limited to software source code, documentation
|
|
11191
|
+
source, and configuration files.
|
|
11192
|
+
|
|
11193
|
+
"Object" form shall mean any form resulting from mechanical
|
|
11194
|
+
transformation or translation of a Source form, including but
|
|
11195
|
+
not limited to compiled object code, generated documentation,
|
|
11196
|
+
and conversions to other media types.
|
|
11197
|
+
|
|
11198
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
11199
|
+
Object form, made available under the License, as indicated by a
|
|
11200
|
+
copyright notice that is included in or attached to the work
|
|
11201
|
+
(an example is provided in the Appendix below).
|
|
11202
|
+
|
|
11203
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
11204
|
+
form, that is based on (or derived from) the Work and for which the
|
|
11205
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
11206
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
11207
|
+
of this License, Derivative Works shall not include works that remain
|
|
11208
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
11209
|
+
the Work and Derivative Works thereof.
|
|
11210
|
+
|
|
11211
|
+
"Contribution" shall mean any work of authorship, including
|
|
11212
|
+
the original version of the Work and any modifications or additions
|
|
11213
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
11214
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
11215
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
11216
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
11217
|
+
means any form of electronic, verbal, or written communication sent
|
|
11218
|
+
to the Licensor or its representatives, including but not limited to
|
|
11219
|
+
communication on electronic mailing lists, source code control systems,
|
|
11220
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
11221
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
11222
|
+
excluding communication that is conspicuously marked or otherwise
|
|
11223
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
11224
|
+
|
|
11225
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
11226
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
11227
|
+
subsequently incorporated within the Work.
|
|
11228
|
+
|
|
11229
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
11230
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
11231
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
11232
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
11233
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
11234
|
+
Work and such Derivative Works in Source or Object form.
|
|
11235
|
+
|
|
11236
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
11237
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
11238
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
11239
|
+
(except as stated in this section) patent license to make, have made,
|
|
11240
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
11241
|
+
where such license applies only to those patent claims licensable
|
|
11242
|
+
by such Contributor that are necessarily infringed by their
|
|
11243
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
11244
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
11245
|
+
institute patent litigation against any entity (including a
|
|
11246
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
11247
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
11248
|
+
or contributory patent infringement, then any patent licenses
|
|
11249
|
+
granted to You under this License for that Work shall terminate
|
|
11250
|
+
as of the date such litigation is filed.
|
|
11251
|
+
|
|
11252
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
11253
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
11254
|
+
modifications, and in Source or Object form, provided that You
|
|
11255
|
+
meet the following conditions:
|
|
11256
|
+
|
|
11257
|
+
(a) You must give any other recipients of the Work or
|
|
11258
|
+
Derivative Works a copy of this License; and
|
|
11259
|
+
|
|
11260
|
+
(b) You must cause any modified files to carry prominent notices
|
|
11261
|
+
stating that You changed the files; and
|
|
11262
|
+
|
|
11263
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
11264
|
+
that You distribute, all copyright, patent, trademark, and
|
|
11265
|
+
attribution notices from the Source form of the Work,
|
|
11266
|
+
excluding those notices that do not pertain to any part of
|
|
11267
|
+
the Derivative Works; and
|
|
9767
11268
|
|
|
9768
|
-
|
|
9769
|
-
|
|
9770
|
-
of the
|
|
11269
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
11270
|
+
distribution, then any Derivative Works that You distribute must
|
|
11271
|
+
include a readable copy of the attribution notices contained
|
|
11272
|
+
within such NOTICE file, excluding those notices that do not
|
|
11273
|
+
pertain to any part of the Derivative Works, in at least one
|
|
11274
|
+
of the following places: within a NOTICE text file distributed
|
|
11275
|
+
as part of the Derivative Works; within the Source form or
|
|
11276
|
+
documentation, if provided along with the Derivative Works; or,
|
|
11277
|
+
within a display generated by the Derivative Works, if and
|
|
11278
|
+
wherever such third-party notices normally appear. The contents
|
|
11279
|
+
of the NOTICE file are for informational purposes only and
|
|
11280
|
+
do not modify the License. You may add Your own attribution
|
|
11281
|
+
notices within Derivative Works that You distribute, alongside
|
|
11282
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
11283
|
+
that such additional attribution notices cannot be construed
|
|
11284
|
+
as modifying the License.
|
|
9771
11285
|
|
|
9772
|
-
|
|
9773
|
-
|
|
9774
|
-
|
|
9775
|
-
|
|
9776
|
-
|
|
9777
|
-
|
|
9778
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
9779
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
9780
|
-
DEALINGS IN THE SOFTWARE.
|
|
11286
|
+
You may add Your own copyright statement to Your modifications and
|
|
11287
|
+
may provide additional or different license terms and conditions
|
|
11288
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
11289
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
11290
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
11291
|
+
the conditions stated in this License.
|
|
9781
11292
|
|
|
9782
|
-
|
|
9783
|
-
|
|
9784
|
-
|
|
9785
|
-
|
|
9786
|
-
|
|
11293
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
11294
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
11295
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
11296
|
+
this License, without any additional terms or conditions.
|
|
11297
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
11298
|
+
the terms of any separate license agreement you may have executed
|
|
11299
|
+
with Licensor regarding such Contributions.
|
|
9787
11300
|
|
|
9788
|
-
|
|
11301
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
11302
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
11303
|
+
except as required for reasonable and customary use in describing the
|
|
11304
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
9789
11305
|
|
|
9790
|
-
|
|
11306
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
11307
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
11308
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
11309
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
11310
|
+
implied, including, without limitation, any warranties or conditions
|
|
11311
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
11312
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
11313
|
+
appropriateness of using or redistributing the Work and assume any
|
|
11314
|
+
risks associated with Your exercise of permissions under this License.
|
|
9791
11315
|
|
|
9792
|
-
|
|
9793
|
-
|
|
9794
|
-
|
|
9795
|
-
|
|
9796
|
-
|
|
9797
|
-
|
|
11316
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
11317
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
11318
|
+
unless required by applicable law (such as deliberate and grossly
|
|
11319
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
11320
|
+
liable to You for damages, including any direct, indirect, special,
|
|
11321
|
+
incidental, or consequential damages of any character arising as a
|
|
11322
|
+
result of this License or out of the use or inability to use the
|
|
11323
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
11324
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
11325
|
+
other commercial damages or losses), even if such Contributor
|
|
11326
|
+
has been advised of the possibility of such damages.
|
|
9798
11327
|
|
|
9799
|
-
|
|
9800
|
-
|
|
11328
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
11329
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
11330
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
11331
|
+
or other liability obligations and/or rights consistent with this
|
|
11332
|
+
License. However, in accepting such obligations, You may act only
|
|
11333
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
11334
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
11335
|
+
defend, and hold each Contributor harmless for any liability
|
|
11336
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
11337
|
+
of your accepting any such warranty or additional liability.
|
|
9801
11338
|
|
|
9802
|
-
|
|
9803
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
9804
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
9805
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
9806
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
9807
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9808
|
-
Status API Training Shop Blog About Pricing
|
|
11339
|
+
END OF TERMS AND CONDITIONS
|
|
9809
11340
|
|
|
9810
11341
|
ad4fcfaf8d5b12b97409c137a03d4a4e4b21024c65c54f976cc3b609c1bd5b0f
|
|
9811
11342
|
----------------------------------------------------------------
|
|
@@ -9838,6 +11369,7 @@ ae9791f02f2bbe0ce17b434753af97be6e5284b6f8e9f22db3c1f0f11b2e015a
|
|
|
9838
11369
|
----------------------------------------------------------------
|
|
9839
11370
|
Used by:
|
|
9840
11371
|
- hashbrown@0.15.5 (LICENSE-MIT)
|
|
11372
|
+
- hashbrown@0.17.1 (LICENSE-MIT)
|
|
9841
11373
|
|
|
9842
11374
|
Copyright (c) 2016 Amanieu d'Antras
|
|
9843
11375
|
|
|
@@ -9990,6 +11522,38 @@ These files were ported from the Java Caffeine library and are not dual-licensed
|
|
|
9990
11522
|
|
|
9991
11523
|
Please refer to the LICENSE-APACHE file for more details on the Apache License 2.0.
|
|
9992
11524
|
|
|
11525
|
+
b38f573d5bc805e32f92fa8772ad44f1330a7de85022d133b2cd3d17424f8c22
|
|
11526
|
+
----------------------------------------------------------------
|
|
11527
|
+
Used by:
|
|
11528
|
+
- aead@0.5.2 (LICENSE-MIT)
|
|
11529
|
+
|
|
11530
|
+
Copyright (c) 2019 The RustCrypto Project Developers
|
|
11531
|
+
Copyright (c) 2019 MobileCoin, LLC
|
|
11532
|
+
|
|
11533
|
+
Permission is hereby granted, free of charge, to any
|
|
11534
|
+
person obtaining a copy of this software and associated
|
|
11535
|
+
documentation files (the "Software"), to deal in the
|
|
11536
|
+
Software without restriction, including without
|
|
11537
|
+
limitation the rights to use, copy, modify, merge,
|
|
11538
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
11539
|
+
the Software, and to permit persons to whom the Software
|
|
11540
|
+
is furnished to do so, subject to the following
|
|
11541
|
+
conditions:
|
|
11542
|
+
|
|
11543
|
+
The above copyright notice and this permission notice
|
|
11544
|
+
shall be included in all copies or substantial portions
|
|
11545
|
+
of the Software.
|
|
11546
|
+
|
|
11547
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
11548
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
11549
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
11550
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
11551
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
11552
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
11553
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
11554
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
11555
|
+
DEALINGS IN THE SOFTWARE.
|
|
11556
|
+
|
|
9993
11557
|
b420d8add23b5cf7663f17f012b06a4c16b722c5dd8fb049b285417214b5702e
|
|
9994
11558
|
----------------------------------------------------------------
|
|
9995
11559
|
Used by:
|
|
@@ -10102,6 +11666,7 @@ b9b039b5058cfe9680025ca12f8591df832666baef9f469ea8ba24e73a7fee60
|
|
|
10102
11666
|
----------------------------------------------------------------
|
|
10103
11667
|
Used by:
|
|
10104
11668
|
- nix@0.30.1 (LICENSE)
|
|
11669
|
+
- nix@0.31.3 (LICENSE)
|
|
10105
11670
|
|
|
10106
11671
|
The MIT License (MIT)
|
|
10107
11672
|
|
|
@@ -10155,6 +11720,33 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
10155
11720
|
|
|
10156
11721
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10157
11722
|
|
|
11723
|
+
bec1ff6c886313105aabc29823670c41f1baf3f2c97cefe41b0261b3a52d2237
|
|
11724
|
+
----------------------------------------------------------------
|
|
11725
|
+
Used by:
|
|
11726
|
+
- crc@3.4.0 (LICENSE-MIT)
|
|
11727
|
+
|
|
11728
|
+
MIT License
|
|
11729
|
+
|
|
11730
|
+
Copyright (c) 2017 crc-rs Developers
|
|
11731
|
+
|
|
11732
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11733
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11734
|
+
in the Software without restriction, including without limitation the rights
|
|
11735
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11736
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11737
|
+
furnished to do so, subject to the following conditions:
|
|
11738
|
+
|
|
11739
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11740
|
+
copies or substantial portions of the Software.
|
|
11741
|
+
|
|
11742
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
11743
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11744
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
11745
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
11746
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
11747
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
11748
|
+
SOFTWARE.
|
|
11749
|
+
|
|
10158
11750
|
c0fdcda1a4ffc5fd63c452e40ce25e54f2098669e3415033b228773eea24a871
|
|
10159
11751
|
----------------------------------------------------------------
|
|
10160
11752
|
Used by:
|
|
@@ -10456,6 +12048,21 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
|
10456
12048
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
10457
12049
|
DEALINGS IN THE SOFTWARE.
|
|
10458
12050
|
|
|
12051
|
+
c43e20176655c7a74c12af7470b65065fac4c81cfd511c69520fcc7f738a3f91
|
|
12052
|
+
----------------------------------------------------------------
|
|
12053
|
+
Used by:
|
|
12054
|
+
- parking@2.2.1 (LICENSE-THIRD-PARTY)
|
|
12055
|
+
|
|
12056
|
+
===============================================================================
|
|
12057
|
+
|
|
12058
|
+
Copyright 2014-2020 The Rust Project Developers
|
|
12059
|
+
|
|
12060
|
+
Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
12061
|
+
http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
12062
|
+
<LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
12063
|
+
option. All files in the project carrying such notice may not be
|
|
12064
|
+
copied, modified, or distributed except according to those terms.
|
|
12065
|
+
|
|
10459
12066
|
c48b7333c00b9776f5571ecaaabf73b9a5343b049bdad89ed05894b45cdc7cc5
|
|
10460
12067
|
----------------------------------------------------------------
|
|
10461
12068
|
Used by:
|
|
@@ -10493,6 +12100,7 @@ Used by:
|
|
|
10493
12100
|
- enum-as-inner@0.6.1 (LICENSE-APACHE)
|
|
10494
12101
|
- hex@0.4.3 (LICENSE-APACHE)
|
|
10495
12102
|
- resolv-conf@0.7.6 (LICENSE-APACHE)
|
|
12103
|
+
- winapi@0.3.9 (LICENSE-APACHE)
|
|
10496
12104
|
|
|
10497
12105
|
Apache License
|
|
10498
12106
|
Version 2.0, January 2004
|
|
@@ -12128,6 +13736,33 @@ Used by:
|
|
|
12128
13736
|
|
|
12129
13737
|
MIT OR Apache-2.0
|
|
12130
13738
|
|
|
13739
|
+
dfa6aff25cb0efb547a0bd19a15d4fb18f360feac358dfe5e024fdcc32cc5cea
|
|
13740
|
+
----------------------------------------------------------------
|
|
13741
|
+
Used by:
|
|
13742
|
+
- libp2p-webrtc-utils@0.4.0 (MIT.txt)
|
|
13743
|
+
|
|
13744
|
+
Copyright notice: not included in the published crate
|
|
13745
|
+
Cargo authors: Doug Anderson <DougAnderson444@peerpiper.io>
|
|
13746
|
+
Source: https://github.com/libp2p/rust-libp2p
|
|
13747
|
+
|
|
13748
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13749
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13750
|
+
in the Software without restriction, including without limitation the rights
|
|
13751
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13752
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13753
|
+
furnished to do so, subject to the following conditions:
|
|
13754
|
+
|
|
13755
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13756
|
+
copies or substantial portions of the Software.
|
|
13757
|
+
|
|
13758
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13759
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13760
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
13761
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13762
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
13763
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
13764
|
+
SOFTWARE.
|
|
13765
|
+
|
|
12131
13766
|
e1c4f4e7314d39c1ba620f549dee2d16c5f3094c8a25a8d4465086af38a6383a
|
|
12132
13767
|
----------------------------------------------------------------
|
|
12133
13768
|
Used by:
|
|
@@ -12379,6 +14014,37 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
|
12379
14014
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
12380
14015
|
DEALINGS IN THE SOFTWARE.
|
|
12381
14016
|
|
|
14017
|
+
e298f3a2b24df9b5cb954b79aecd16909cadb06e88d792a8038f2cc1a7b1b50e
|
|
14018
|
+
----------------------------------------------------------------
|
|
14019
|
+
Used by:
|
|
14020
|
+
- tinytemplate@1.2.1 (LICENSE-MIT)
|
|
14021
|
+
|
|
14022
|
+
Copyright (c) 2019 Brook Heisler
|
|
14023
|
+
|
|
14024
|
+
Permission is hereby granted, free of charge, to any
|
|
14025
|
+
person obtaining a copy of this software and associated
|
|
14026
|
+
documentation files (the "Software"), to deal in the
|
|
14027
|
+
Software without restriction, including without
|
|
14028
|
+
limitation the rights to use, copy, modify, merge,
|
|
14029
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
14030
|
+
the Software, and to permit persons to whom the Software
|
|
14031
|
+
is furnished to do so, subject to the following
|
|
14032
|
+
conditions:
|
|
14033
|
+
|
|
14034
|
+
The above copyright notice and this permission notice
|
|
14035
|
+
shall be included in all copies or substantial portions
|
|
14036
|
+
of the Software.
|
|
14037
|
+
|
|
14038
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
14039
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
14040
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
14041
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
14042
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
14043
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
14044
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
14045
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
14046
|
+
DEALINGS IN THE SOFTWARE.
|
|
14047
|
+
|
|
12382
14048
|
e337e719e1e9fab1b1f7c39a5ed3446bf0fc399abd5ad5014af018f3b7bcb7dd
|
|
12383
14049
|
----------------------------------------------------------------
|
|
12384
14050
|
Used by:
|
|
@@ -12886,6 +14552,38 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
12886
14552
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
12887
14553
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
12888
14554
|
|
|
14555
|
+
f3bd9e2e7745e49db37c28033e4da290df8cf528aa21369d6861699804c5e5dd
|
|
14556
|
+
----------------------------------------------------------------
|
|
14557
|
+
Used by:
|
|
14558
|
+
- ctr@0.9.2 (LICENSE-MIT)
|
|
14559
|
+
|
|
14560
|
+
Copyright (c) 2018-2022 RustCrypto Developers
|
|
14561
|
+
Copyright (c) 2018 Artyom Pavlov
|
|
14562
|
+
|
|
14563
|
+
Permission is hereby granted, free of charge, to any
|
|
14564
|
+
person obtaining a copy of this software and associated
|
|
14565
|
+
documentation files (the "Software"), to deal in the
|
|
14566
|
+
Software without restriction, including without
|
|
14567
|
+
limitation the rights to use, copy, modify, merge,
|
|
14568
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
14569
|
+
the Software, and to permit persons to whom the Software
|
|
14570
|
+
is furnished to do so, subject to the following
|
|
14571
|
+
conditions:
|
|
14572
|
+
|
|
14573
|
+
The above copyright notice and this permission notice
|
|
14574
|
+
shall be included in all copies or substantial portions
|
|
14575
|
+
of the Software.
|
|
14576
|
+
|
|
14577
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
14578
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
14579
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
14580
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
14581
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
14582
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
14583
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
14584
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
14585
|
+
DEALINGS IN THE SOFTWARE.
|
|
14586
|
+
|
|
12889
14587
|
f7183775eea50f974ee99591ef2111e7ed5022b68c2ac51bc955268f9de2bfd8
|
|
12890
14588
|
----------------------------------------------------------------
|
|
12891
14589
|
Used by:
|
|
@@ -12925,6 +14623,7 @@ fd270b8c59ed37680ea2106f920afe52ebc4d276d2377283f8b13276b36c09bd
|
|
|
12925
14623
|
----------------------------------------------------------------
|
|
12926
14624
|
Used by:
|
|
12927
14625
|
- pem@3.0.6 (LICENSE.md)
|
|
14626
|
+
- pem@4.0.0 (LICENSE.md)
|
|
12928
14627
|
|
|
12929
14628
|
The MIT License (MIT)
|
|
12930
14629
|
|