sushiro-cli-darwin-x64 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/bin/sushiro-cli +0 -0
- package/legal/CREDITS.md +37 -0
- package/legal/DISCLAIMER.md +29 -0
- package/legal/LICENSE +21 -0
- package/legal/PRIVACY.md +56 -0
- package/legal/SECURITY.md +35 -0
- package/legal/THIRD_PARTY_LICENSES.txt +956 -0
- package/legal/THIRD_PARTY_NOTICES.md +90 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# sushiro-cli-darwin-x64
|
|
2
|
+
|
|
3
|
+
Version 0.1.2. Precompiled Sushiro CLI distribution.
|
|
4
|
+
|
|
5
|
+
Keep optional dependencies enabled. No postinstall download is used.
|
|
6
|
+
|
|
7
|
+
No personal login or credential import is required to install, run help/version, or initialize MCP and discover tools.
|
|
8
|
+
|
|
9
|
+
Start with `sushiro-cli help`, `sushiro-cli version --json`, or `sushiro-cli mcp`.
|
|
10
|
+
|
|
11
|
+
Public `stores` and `slots` queries are separate from personal authentication; the upstream may require legitimate query configuration. An empty result and a failed request are different outcomes.
|
|
12
|
+
|
|
13
|
+
Personal ticket/reservation queries and reservation/cancellation commands remain available and require their own credentials; writes also require explicit user authorization. Import personal credentials only when using those features. Native login is pending.
|
|
14
|
+
|
|
15
|
+
## License, privacy and attribution
|
|
16
|
+
|
|
17
|
+
[THIRD_PARTY_NOTICES.md](legal/THIRD_PARTY_NOTICES.md) · [THIRD_PARTY_LICENSES.txt](legal/THIRD_PARTY_LICENSES.txt) · [LICENSE](legal/LICENSE) · [CREDITS.md](legal/CREDITS.md) · [PRIVACY.md](legal/PRIVACY.md) · [DISCLAIMER.md](legal/DISCLAIMER.md) · [SECURITY.md](legal/SECURITY.md)
|
|
18
|
+
|
|
19
|
+
The project license does not replace third-party licenses. Built-in public query configuration is present in the binary; personal credentials are not bundled. npm uninstall does not remove application configuration.
|
package/bin/sushiro-cli
ADDED
|
Binary file
|
package/legal/CREDITS.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Credits
|
|
2
|
+
|
|
3
|
+
## Foundational upstream: Ryujoxys/sushiro-overdose
|
|
4
|
+
|
|
5
|
+
**Thank you to [Ryujoxys](https://github.com/Ryujoxys) and the contributors to
|
|
6
|
+
[sushiro-overdose](https://github.com/Ryujoxys/sushiro-overdose). Their published
|
|
7
|
+
Sushiro China API implementation and protocol research made this smaller CLI
|
|
8
|
+
and MCP client possible.**
|
|
9
|
+
|
|
10
|
+
We used revision `e273df046789773616c7851c0bea14d4546f47e5`, specifically:
|
|
11
|
+
|
|
12
|
+
- [`internal/api/api.go`](https://github.com/Ryujoxys/sushiro-overdose/blob/e273df046789773616c7851c0bea14d4546f47e5/internal/api/api.go): store and timeslot requests, reservation request fields, separate query/reservation authorization, E044/E052 meaning, and nested ticket-response parsing. Our HTTP client rewrites these flows with its own errors, limits and validation.
|
|
13
|
+
- [`internal/core/slot.go`](https://github.com/Ryujoxys/sushiro-overdose/blob/e273df046789773616c7851c0bea14d4546f47e5/internal/core/slot.go): the reproduced `Slot` definition and adapted store/reservation models.
|
|
14
|
+
- [`internal/app/queue_live.go`](https://github.com/Ryujoxys/sushiro-overdose/blob/e273df046789773616c7851c0bea14d4546f47e5/internal/app/queue_live.go): store discovery, non-location coordinates, result-count default and the public-query default token. Token content is deliberately omitted from this credit document.
|
|
15
|
+
- [`internal/core/capture.go`](https://github.com/Ryujoxys/sushiro-overdose/blob/e273df046789773616c7851c0bea14d4546f47e5/internal/core/capture.go), [`internal/app/auth_import.go`](https://github.com/Ryujoxys/sushiro-overdose/blob/e273df046789773616c7851c0bea14d4546f47e5/internal/app/auth_import.go) and [`internal/app/mobile_auth_capture.go`](https://github.com/Ryujoxys/sushiro-overdose/blob/e273df046789773616c7851c0bea14d4546f47e5/internal/app/mobile_auth_capture.go): evidence for credential/header interpretation and the distinction between local capture guidance and native WeChat login. Our strict credential importer and bounded observer are separate implementations informed by this research.
|
|
16
|
+
|
|
17
|
+
sushiro-cli has a separate CLI/service/auth architecture, official Go SDK MCP
|
|
18
|
+
integration and npm launcher. It does not include upstream's desktop app,
|
|
19
|
+
Web UI, prediction/sampling system or Python FastMCP server. These differences
|
|
20
|
+
do not erase the adaptation above. Please credit and support the upstream work
|
|
21
|
+
when discussing this project's origins.
|
|
22
|
+
|
|
23
|
+
Upstream is MIT, copyright (c) 2026 Ryujoxys. Its complete notice is preserved in
|
|
24
|
+
[THIRD_PARTY_NOTICES.md](THIRD_PARTY_NOTICES.md) and
|
|
25
|
+
[THIRD_PARTY_LICENSES.txt](THIRD_PARTY_LICENSES.txt).
|
|
26
|
+
|
|
27
|
+
## Runtime and packaging foundations
|
|
28
|
+
|
|
29
|
+
Thanks to the Model Context Protocol Go SDK contributors, JSON Schema Go Project
|
|
30
|
+
Authors, Segment, Kohei YOSHIDA, and the Go Authors for the runtime dependencies
|
|
31
|
+
listed in [THIRD_PARTY_NOTICES.md](THIRD_PARTY_NOTICES.md). The Node.js/npm tools
|
|
32
|
+
are used to package and launch the Go executable; Node.js itself is not bundled.
|
|
33
|
+
|
|
34
|
+
This community client is not an official Sushiro product, and no upstream author
|
|
35
|
+
or dependency maintainer is represented as endorsing it. The root MIT license
|
|
36
|
+
covers this project's own contributions by lmxx1234567, while third-party
|
|
37
|
+
copyright and license notices remain applicable.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# 项目关系、使用边界与责任说明
|
|
2
|
+
|
|
3
|
+
更新日期:2026-09-16。
|
|
4
|
+
|
|
5
|
+
本项目是非官方的寿司郎中国服务 CLI/MCP 工具,与寿司郎、其关联企业、微信或腾讯不存在官方隶属、合作或背书关系。相关名称和商标属于各自权利人,仅用于说明兼容对象。
|
|
6
|
+
|
|
7
|
+
项目参考并改编了 [Ryujoxys/sushiro-overdose](https://github.com/Ryujoxys/sushiro-overdose) 的协议字段、响应处理及公共查询默认配置,感谢其开源工作。来源和许可见 [THIRD_PARTY_NOTICES.md](THIRD_PARTY_NOTICES.md)。上游代码公开或采用 MIT,并不意味着第三方服务授权、商标许可或公共 token 分发条件也已获得确认。
|
|
8
|
+
|
|
9
|
+
## 使用与服务限制
|
|
10
|
+
|
|
11
|
+
你应仅在有权使用的账户和数据范围内操作,并遵守适用法律及官方服务的现行规则。不要把工具用于冒用账户、绕过访问限制、滥发请求或占用他人服务资源。此使用说明不改变 MIT 对软件本身授予的许可,也不授予第三方服务或账户的访问权。
|
|
12
|
+
|
|
13
|
+
接口、会话、门店、时段和名额可能随时变化或不可用;查询成功不保证预约成功。等位数表示桌数,不能当作等候分钟数。错误不能解释为“没有预约”,当前票据快照不能替代完整预约历史。
|
|
14
|
+
|
|
15
|
+
创建和取消预约会影响真实账户。使用前必须明确授权具体门店、日期、时间、人数、桌型或要取消的票据。CLI 的 `--confirm` 和 MCP 的 `confirm=true` 是调用条件,不能证明操作者或模型真的取得了授权;宿主和调用者仍须落实确认。遇到超时、连接中断或 `state=uncertain`,不要盲目重试;先检查返回的回查信息,并通过官方服务核对实际状态。当前完整预约列表不可用时,程序的回查不能保证完成确认。
|
|
16
|
+
|
|
17
|
+
截至本说明核对的基线,公共默认模式的 CLI/MCP/npm 查询有成功验收记录;个人接口存在 E010/404 的历史失败,原生认证及创建/取消预约闭环仍待验证。历史成功记录不是当前可用性、所有平台兼容性或未来持续服务承诺。
|
|
18
|
+
|
|
19
|
+
## 不保证与责任限制
|
|
20
|
+
|
|
21
|
+
本项目新增贡献采用 [MIT 许可证](LICENSE),第三方内容保留其各自许可,详见 [第三方声明](THIRD_PARTY_NOTICES.md)。依 MIT 的不保证与责任限制安排,在适用法律允许的最大范围内,软件按现状提供,不对适销性、特定用途适用性或不侵权作明示或默示保证;作者和版权持有人的相关责任受该许可证限制。本文不扩张许可证所授予的权利,也不对第三方服务作保证。[MIT 官方文本](https://opensource.org/license/mit)
|
|
22
|
+
|
|
23
|
+
**任何不保证或责任限制都不排除、限制适用法律不允许排除或限制的责任,也不剥夺依法不可放弃的权利。** 本说明不是对“所有风险均由用户承担”或“维护者在任何情形下均免责”的承诺。具体效力取决于实际发布主体、使用场景、适用法律及事实。
|
|
24
|
+
|
|
25
|
+
本文是项目说明,未经律师审定,不是面向特定法域的法律意见或合规认证。发布账号/署名已确定为 `lmxx1234567`,但法律主体身份、管辖/适用法域、私密联系渠道及第三方接口使用条件尚待确认;仅面向中文用户不构成选择适用法律的依据。功能边界见[已知限制](https://github.com/lmxx1234567/sushiro-cli/blob/0a66837e75c06de098527308ce27e97ce0ee5ee8/docs/limitations.md),数据处理方式见 [PRIVACY.md](PRIVACY.md)。
|
|
26
|
+
|
|
27
|
+
## English summary
|
|
28
|
+
|
|
29
|
+
This is an unofficial project with no affiliation or endorsement from Sushiro, WeChat or Tencent. Credit and source attribution belong to Ryujoxys/sushiro-overdose and the other named dependencies. Interface availability and reservation success are not guaranteed. Account writes require explicit authorization; uncertain writes must not be blindly retried. New project contributions use MIT; third-party terms remain applicable. Warranty and liability limitations apply only to the extent permitted by applicable law and do not exclude non-excludable liability or rights. This document is not legal advice or a compliance certification.
|
package/legal/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 lmxx1234567
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/legal/PRIVACY.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# 隐私与数据处理说明
|
|
2
|
+
|
|
3
|
+
更新日期:2026-09-16。适用于本仓库的 `sushiro-cli` CLI、stdio MCP 及 npm 启动器;使用配置见[配置说明](https://github.com/lmxx1234567/sushiro-cli/blob/0a66837e75c06de098527308ce27e97ce0ee5ee8/docs/configuration.md),功能边界见[已知限制](https://github.com/lmxx1234567/sushiro-cli/blob/0a66837e75c06de098527308ce27e97ce0ee5ee8/docs/limitations.md)。发布账号/署名为 `lmxx1234567`;其法律主体身份、隐私联系安排和适用法域尚待确认,不能仅从 GitHub 用户名推定。本文不构成已经完成法律合规审查的声明。
|
|
4
|
+
|
|
5
|
+
## 数据流
|
|
6
|
+
|
|
7
|
+
当前产品代码没有维护者运营的数据中转、使用分析、遥测或崩溃上报入口。业务请求以 HTTPS 发往 `crm-cn-prd.sushiro.com.cn`,不会先交给本项目维护者的服务器。此结论限定于核对过的产品代码,不涵盖自行修改版本、包管理器、MCP 宿主或另行运行的研究脚本。
|
|
8
|
+
|
|
9
|
+
“公共查询”表示无需你的个人业务会话,并不表示匿名或无认证。默认公共查询 token 随源码和二进制分发,只在运行时作为内存默认配置使用,不自动写入用户配置目录。它的签发主体、分发条件和有效期尚未确证;来自公开上游源码不等于获得寿司郎官方授权。
|
|
10
|
+
|
|
11
|
+
| 功能 | 发给寿司郎接口的数据 | 本地输出 |
|
|
12
|
+
| --- | --- | --- |
|
|
13
|
+
| 门店列表、单店查询 | 公共查询 Authorization、客户端头;列表坐标与数量,或门店 ID | 门店名称、地址、区域、营业/预约状态、等位桌数等选定字段 |
|
|
14
|
+
| 可约时段 | 公共查询 Authorization、客户端头、门店 ID、桌型、合计人数 | 门店、日期、起止时间、可用状态 |
|
|
15
|
+
| 当前票据 | 个人 Authorization、客户端头、URL 查询参数中的 WechatID | 当前排队/预约票据的选定字段,可能包括票号、门店、日期时间、人数 |
|
|
16
|
+
| 完整预约列表 | 个人 Authorization、客户端头、WechatID、手机号 | 预约记录的选定字段,或明确的失败状态 |
|
|
17
|
+
| 创建或取消预约 | 个人 Authorization、客户端头、WechatID、手机号,以及预约参数或票据 ID | 票据、操作状态;必要时包含只读回查结果 |
|
|
18
|
+
|
|
19
|
+
客户端头可包括 User-Agent、Referer、X-App-Code、X-App-Client;个人请求另带 Xweb_xhr。是否发送某个可选头取决于配置。公共查询不加载个人档案,也不发送其中的 WechatID 或手机号。
|
|
20
|
+
|
|
21
|
+
程序不自动获取设备定位。列表未指定 `--near` / `near` 时使用兼容坐标 `1,1`,不是你的位置;显式提供的坐标会发送给服务端。寿司郎服务端能看到请求来源 IP(使用代理时通常是代理出口 IP)、请求时间、请求头和参数。项目无法规定该服务端的留存、共享或删除方式,应查阅你使用的官方服务内的现行隐私说明。
|
|
22
|
+
|
|
23
|
+
网络路径还受你的环境影响:Go 默认 HTTP transport 可使用 `HTTPS_PROXY` 等代理配置,DNS、代理及受信任的网络检查设施也可能处理连接信息。“目标是寿司郎接口”不等于网络上没有其他参与方。[Go 官方说明](https://pkg.go.dev/net/http#ProxyFromEnvironment)
|
|
24
|
+
|
|
25
|
+
## 本机保存、保留与删除
|
|
26
|
+
|
|
27
|
+
个人模式通过 `auth import --file` 导入已有会话;原生微信登录尚未完成。保存内容包括个人授权 token、WechatID、手机号及兼容请求头,具体以导入文件为准。`public import --file` 保存单独的公共覆盖配置,其 schema 拒绝个人身份字段。导入不会自动删除原始文件。
|
|
28
|
+
|
|
29
|
+
在支持的 Unix 系统上,程序创建配置目录时使用 `0700`、写入文件时使用 `0600`,并拒绝部分不安全路径/权限。文件是**未加密 JSON**,不是系统钥匙串或凭证保险库。同一用户权限的应用、管理员、恶意软件以及有权限的备份程序仍可能读取。已有的更严格权限可以保留;权限检查不能保证所有文件系统、ACL 或并发攻击场景都安全。Windows 当前不支持这些私有文件存储操作;内置默认公共查询不依赖该存储能力。
|
|
30
|
+
|
|
31
|
+
| 系统 | 默认个人档案路径;公共档案位于其 `public/` 子目录 |
|
|
32
|
+
| --- | --- |
|
|
33
|
+
| macOS | `~/Library/Application Support/sushiro/<profile>.json` |
|
|
34
|
+
| Linux | `$XDG_CONFIG_HOME/sushiro/<profile>.json`;未设置时 `~/.config/sushiro/<profile>.json` |
|
|
35
|
+
|
|
36
|
+
`SUSHIRO_CONFIG_DIR` 可指定配置根目录,`SUSHIRO_PUBLIC_CONFIG_DIR` 可单独指定公共目录;这些变量仅应放路径,不要放 token。默认 profile 是 `default`。`auth status` 只检查本地字段存在情况,可能创建配置目录;它不证明服务端会话有效。公共默认查询和 `public status` 在无覆盖文件时不创建默认配置文件或目录。
|
|
37
|
+
|
|
38
|
+
显式导入的数据没有自动到期删除机制,升级和卸载 npm 包后仍保留在用户配置目录;本版没有 CLI 清理命令。需要删除时,先停止 CLI/MCP,确认实际覆盖路径及所选 profile,再手动删除对应个人或公共 JSON 文件,并分别处理原始导入文件、备份和自己保存的输出。删除公共覆盖文件会恢复内置默认查询行为;删除个人文件不会撤销寿司郎服务端会话,也不会取消预约。文件删除不保证安全擦除。npm 自第 7 版起没有卸载生命周期脚本,不能依靠包卸载清理这些外部文件。[npm 官方说明](https://docs.npmjs.com/cli/v11/using-npm/scripts/#a-note-on-a-lack-of-npm-uninstall-scripts)
|
|
39
|
+
|
|
40
|
+
## 输出、MCP 与第三方
|
|
41
|
+
|
|
42
|
+
CLI 将结果写到标准输出,MCP 通过 stdin/stdout 向宿主返回文本及结构化结果。产品不自动保存业务历史或完整 HTTP 日志;业务错误信息按固定类别返回,不直接转储请求头、URL 或原始响应。但正常票据结果本身可能具有个人性,输出重定向、终端记录、shell 历史、MCP 会话记录和系统诊断可能产生副本。交互写操作确认会展示已校验的操作参数;系统或第三方错误信息还可能包含本机路径等环境信息。不要把凭证粘贴到命令参数或交互窗口,不要把未经检查的日志视为已脱敏。
|
|
43
|
+
|
|
44
|
+
MCP 宿主能够接收工具参数和输出,并可能将其保存、发送给模型供应商或其他服务。是否用于训练、保存多久、在哪个地区处理,取决于所选宿主、供应商、账户类型和设置,本项目不能保证“永不离机”或“不会被用于训练”。工具的只读/写入提示不是宿主权限控制;请按需要限制个人工具与写操作。
|
|
45
|
+
|
|
46
|
+
本 CLI/MCP 产品没有桌面截图、Computer Use、浏览器控制、系统代理设置或证书安装能力。若宿主另外执行 Computer Use,其截图和桌面内容由宿主按自身权限处理,不是本 CLI 的采集行为。
|
|
47
|
+
|
|
48
|
+
从 GitHub/npm 下载、访问项目页面、提交 issue 或发送附件,会另外与这些第三方交互。维护者可看到你主动提供的反馈,公开 issue 的内容还可能被他人复制;“无产品遥测”不表示维护者不可能收到你提交的数据。相关平台按其政策处理账户、网络和内容信息:[GitHub 隐私声明](https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement)、[npm 隐私说明](https://docs.npmjs.com/policies/privacy/)。
|
|
49
|
+
|
|
50
|
+
项目地址为 [lmxx1234567/sushiro-cli](https://github.com/lmxx1234567/sushiro-cli)。非敏感反馈可通过项目 issues 提交;安全或隐私问题请使用已启用的 [GitHub 私密漏洞报告](https://github.com/lmxx1234567/sushiro-cli/security/advisories/new),不要在公开 issue 中发送个人数据。
|
|
51
|
+
|
|
52
|
+
发现误发凭证或隐私问题时,停止继续分享,按[安全说明](SECURITY.md)联系维护者;涉及官方会话失效、撤销或官方数据请求,应使用寿司郎/微信现行官方渠道。维护者不能代替第三方承诺删除其全部副本。
|
|
53
|
+
|
|
54
|
+
## English summary
|
|
55
|
+
|
|
56
|
+
The reviewed CLI/MCP code has no maintainer telemetry or relay backend. Business requests target Sushiro over HTTPS, subject to your proxy settings. Public queries use an embedded query token and disclose request metadata and supplied coordinates; they are not anonymous. Imported personal credentials are unencrypted local JSON protected by Unix permissions, readable by applications running as the same user. Imported files survive uninstall. MCP hosts and model providers may receive, store or process tool results. GitHub/npm and voluntarily submitted reports have separate data flows. The publisher account is lmxx1234567. Private security and privacy reports can be submitted through the repository’s GitHub private vulnerability reporting channel.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# 安全说明与漏洞报告
|
|
2
|
+
|
|
3
|
+
更新日期:2026-09-16。项目已公开,尚未确定长期支持版本范围、响应时限或漏洞奖励计划。不要据此假定旧版本有安全维护承诺。
|
|
4
|
+
|
|
5
|
+
## 如何报告
|
|
6
|
+
|
|
7
|
+
仓库已启用 [GitHub 私密漏洞报告](https://github.com/lmxx1234567/sushiro-cli/security/advisories/new)。请通过 Security → Advisories → **Report a vulnerability** 向维护者 `lmxx1234567` 提交安全问题。
|
|
8
|
+
|
|
9
|
+
若该入口不可用,可在项目 issue 中仅询问私密联系方式,不附漏洞利用细节、个人数据或凭证。使用方法见 [GitHub 官方报告指引](https://docs.github.com/en/code-security/how-tos/report-and-fix-vulnerabilities/report-privately)。
|
|
10
|
+
|
|
11
|
+
报告应尽量包含版本/commit、操作系统、CLI 或 MCP 使用方式、影响描述,以及使用虚构账户和假 token 的最小复现。可以提供固定错误码及脱敏截图。不要发送实际 Authorization、WechatID、手机号、票据号码、完整凭证 JSON、代理捕获、请求头或未经检查的宿主日志。私密渠道仍可能由第三方托管,并非可以放心提交全部秘密的理由。
|
|
12
|
+
|
|
13
|
+
如已泄露个人凭证,应先停止进一步传播、通过官方服务处理会话撤销/更新,并检查真实账户状态。删除本地文件或公开帖子不保证服务端凭证失效,也不能收回所有副本。涉及寿司郎或微信服务本身的问题应同时使用其官方渠道;本项目无权承诺第三方的修复时限。
|
|
14
|
+
|
|
15
|
+
## 已实现的保护及边界
|
|
16
|
+
|
|
17
|
+
- 公共查询与个人档案分开;公共客户端限制为公共路径的 GET。显式损坏或不安全公共配置不会静默退回默认配置。
|
|
18
|
+
- 业务目标固定为寿司郎 HTTPS origin,不跟随 HTTP 重定向。默认网络层仍受系统信任和环境代理配置影响。
|
|
19
|
+
- Unix 配置目录/文件创建权限为 `0700`/`0600`,包含路径和文件检查;保存为未加密 JSON,同用户应用和管理员仍可能读取。Windows 私有文件存储尚不支持。
|
|
20
|
+
- 业务错误不直接回传原始响应、请求 URL 或头。正常票据输出、交互确认中的操作参数,以及系统、终端或 MCP 宿主保存的内容仍需人工脱敏。
|
|
21
|
+
- 写操作要求确认标志,服务层没有自动重试写请求的循环;不确定结果尝试只读回查,不把未确认状态当作成功。确认标志、MCP annotations 都不是独立的授权或安全隔离机制。
|
|
22
|
+
|
|
23
|
+
这些是代码层面的保护,不是对不存在漏洞、不会泄露或不会发生未经授权操作的保证。源码中的公共默认 token 是公开分发内容,不能当作个人账户凭证或秘密保护措施,其分发条件和有效期仍需确认。
|
|
24
|
+
|
|
25
|
+
## 使用和维护建议
|
|
26
|
+
|
|
27
|
+
只向可信的 MCP 宿主开放所需工具,核对每次写操作的具体参数。避免将个人工具开放给不可信对话或自动流程。不要将原始凭证放进命令行、环境变量、聊天、issue 或仓库;配置目录的环境变量只用于路径。使用私有文件导入并妥善处理导入源文件和备份。
|
|
28
|
+
|
|
29
|
+
只使用来源可核对的发行物;发布文件哈希有助于检查一致性,但不能独立证明发布者身份。贡献者应使用虚构数据和测试 transport 复现问题,不要为测试实际预约或取消。
|
|
30
|
+
|
|
31
|
+
具体数据流、保留和删除方式见 [PRIVACY.md](PRIVACY.md),配置方法见[配置说明](https://github.com/lmxx1234567/sushiro-cli/blob/0a66837e75c06de098527308ce27e97ce0ee5ee8/docs/configuration.md),功能边界见[已知限制](https://github.com/lmxx1234567/sushiro-cli/blob/0a66837e75c06de098527308ce27e97ce0ee5ee8/docs/limitations.md)。
|
|
32
|
+
|
|
33
|
+
## English summary
|
|
34
|
+
|
|
35
|
+
GitHub private vulnerability reporting is enabled for this repository. Use “Report a vulnerability”; if unavailable, ask for a private contact without posting sensitive details. Reports should use synthetic credentials and minimal reproductions. No response-time, support-lifetime or bounty commitment has been established. Local credentials are unencrypted, MCP hosts may process personal outputs, and confirmation flags do not prove user authorization. Do not disclose real tokens or run account writes to reproduce a security issue.
|
|
@@ -0,0 +1,956 @@
|
|
|
1
|
+
Third-party license texts for sushiro-cli.
|
|
2
|
+
|
|
3
|
+
The root MIT LICENSE applies to this project's own contributions only.
|
|
4
|
+
The following files are reproduced unchanged, including upstream transition
|
|
5
|
+
language. Labels are inventory information, not replacement license grants.
|
|
6
|
+
MCP SDK documentation licensing is preserved as stated by the SDK; this bundle
|
|
7
|
+
does not redistribute its documentation. The Go boringcrypto notice is retained
|
|
8
|
+
conservatively with its own conditional scope; standard CGO_ENABLED=0 builds do
|
|
9
|
+
not enable BoringSSL. Refresh this inventory when dependencies/toolchains change.
|
|
10
|
+
|
|
11
|
+
=== Ryujoxys/sushiro-overdose e273df046789773616c7851c0bea14d4546f47e5 ===
|
|
12
|
+
|
|
13
|
+
LICENSE
|
|
14
|
+
MIT License
|
|
15
|
+
|
|
16
|
+
Copyright (c) 2026 Ryujoxys
|
|
17
|
+
|
|
18
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
19
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
20
|
+
in the Software without restriction, including without limitation the rights
|
|
21
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
23
|
+
furnished to do so, subject to the following conditions:
|
|
24
|
+
|
|
25
|
+
The above copyright notice and this permission notice shall be included in all
|
|
26
|
+
copies or substantial portions of the Software.
|
|
27
|
+
|
|
28
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
29
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
30
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
31
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
32
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
33
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34
|
+
SOFTWARE.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
=== github.com/modelcontextprotocol/go-sdk v1.4.0 ===
|
|
38
|
+
|
|
39
|
+
LICENSE
|
|
40
|
+
The MCP project is undergoing a licensing transition from the MIT License to the Apache License, Version 2.0 ("Apache-2.0"). All new code and specification contributions to the project are licensed under Apache-2.0. Documentation contributions (excluding specifications) are licensed under CC-BY-4.0.
|
|
41
|
+
|
|
42
|
+
Contributions for which relicensing consent has been obtained are licensed under Apache-2.0. Contributions made by authors who originally licensed their work under the MIT License and who have not yet granted explicit permission to relicense remain licensed under the MIT License.
|
|
43
|
+
|
|
44
|
+
No rights beyond those granted by the applicable original license are conveyed for such contributions.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
Apache License
|
|
49
|
+
Version 2.0, January 2004
|
|
50
|
+
http://www.apache.org/licenses/
|
|
51
|
+
|
|
52
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
53
|
+
|
|
54
|
+
1. Definitions.
|
|
55
|
+
|
|
56
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
57
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
58
|
+
|
|
59
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
60
|
+
the copyright owner that is granting the License.
|
|
61
|
+
|
|
62
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
63
|
+
other entities that control, are controlled by, or are under common
|
|
64
|
+
control with that entity. For the purposes of this definition,
|
|
65
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
66
|
+
direction or management of such entity, whether by contract or
|
|
67
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
68
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
69
|
+
|
|
70
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
71
|
+
exercising permissions granted by this License.
|
|
72
|
+
|
|
73
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
74
|
+
including but not limited to software source code, documentation
|
|
75
|
+
source, and configuration files.
|
|
76
|
+
|
|
77
|
+
"Object" form shall mean any form resulting from mechanical
|
|
78
|
+
transformation or translation of a Source form, including but
|
|
79
|
+
not limited to compiled object code, generated documentation,
|
|
80
|
+
and conversions to other media types.
|
|
81
|
+
|
|
82
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
83
|
+
Object form, made available under the License, as indicated by a
|
|
84
|
+
copyright notice that is included in or attached to the work
|
|
85
|
+
(an example is provided in the Appendix below).
|
|
86
|
+
|
|
87
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
88
|
+
form, that is based on (or derived from) the Work and for which the
|
|
89
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
90
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
91
|
+
of this License, Derivative Works shall not include works that remain
|
|
92
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
93
|
+
the Work and Derivative Works thereof.
|
|
94
|
+
|
|
95
|
+
"Contribution" shall mean any work of authorship, including
|
|
96
|
+
the original version of the Work and any modifications or additions
|
|
97
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
98
|
+
submitted to Licensor for inclusion in the Work by the copyright
|
|
99
|
+
owner or by an individual or Legal Entity authorized to submit on behalf
|
|
100
|
+
of the copyright owner. For the purposes of this definition, "submitted"
|
|
101
|
+
means any form of electronic, verbal, or written communication sent
|
|
102
|
+
to the Licensor or its representatives, including but not limited to
|
|
103
|
+
communication on electronic mailing lists, source code control systems,
|
|
104
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
105
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
106
|
+
excluding communication that is conspicuously marked or otherwise
|
|
107
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
108
|
+
|
|
109
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
110
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
111
|
+
subsequently incorporated within the Work.
|
|
112
|
+
|
|
113
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
114
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
115
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
116
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
117
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
118
|
+
Work and such Derivative Works in Source or Object form.
|
|
119
|
+
|
|
120
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
121
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
122
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
123
|
+
(except as stated in this section) patent license to make, have made,
|
|
124
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
125
|
+
where such license applies only to those patent claims licensable
|
|
126
|
+
by such Contributor that are necessarily infringed by their
|
|
127
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
128
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
129
|
+
institute patent litigation against any entity (including a
|
|
130
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
131
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
132
|
+
or contributory patent infringement, then any patent licenses
|
|
133
|
+
granted to You under this License for that Work shall terminate
|
|
134
|
+
as of the date such litigation is filed.
|
|
135
|
+
|
|
136
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
137
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
138
|
+
modifications, and in Source or Object form, provided that You
|
|
139
|
+
meet the following conditions:
|
|
140
|
+
|
|
141
|
+
(a) You must give any other recipients of the Work or
|
|
142
|
+
Derivative Works a copy of this License; and
|
|
143
|
+
|
|
144
|
+
(b) You must cause any modified files to carry prominent notices
|
|
145
|
+
stating that You changed the files; and
|
|
146
|
+
|
|
147
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
148
|
+
that You distribute, all copyright, patent, trademark, and
|
|
149
|
+
attribution notices from the Source form of the Work,
|
|
150
|
+
excluding those notices that do not pertain to any part of
|
|
151
|
+
the Derivative Works; and
|
|
152
|
+
|
|
153
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
154
|
+
distribution, then any Derivative Works that You distribute must
|
|
155
|
+
include a readable copy of the attribution notices contained
|
|
156
|
+
within such NOTICE file, excluding those notices that do not
|
|
157
|
+
pertain to any part of the Derivative Works, in at least one
|
|
158
|
+
of the following places: within a NOTICE text file distributed
|
|
159
|
+
as part of the Derivative Works; within the Source form or
|
|
160
|
+
documentation, if provided along with the Derivative Works; or,
|
|
161
|
+
within a display generated by the Derivative Works, if and
|
|
162
|
+
wherever such third-party notices normally appear. The contents
|
|
163
|
+
of the NOTICE file are for informational purposes only and
|
|
164
|
+
do not modify the License. You may add Your own attribution
|
|
165
|
+
notices within Derivative Works that You distribute, alongside
|
|
166
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
167
|
+
that such additional attribution notices cannot be construed
|
|
168
|
+
as modifying the License.
|
|
169
|
+
|
|
170
|
+
You may add Your own copyright statement to Your modifications and
|
|
171
|
+
may provide additional or different license terms and conditions
|
|
172
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
173
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
174
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
175
|
+
the conditions stated in this License.
|
|
176
|
+
|
|
177
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
178
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
179
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
180
|
+
this License, without any additional terms or conditions.
|
|
181
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
182
|
+
the terms of any separate license agreement you may have executed
|
|
183
|
+
with Licensor regarding such Contributions.
|
|
184
|
+
|
|
185
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
186
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
187
|
+
except as required for reasonable and customary use in describing the
|
|
188
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
189
|
+
|
|
190
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
191
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
192
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
193
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
194
|
+
implied, including, without limitation, any warranties or conditions
|
|
195
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
196
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
197
|
+
appropriateness of using or redistributing the Work and assume any
|
|
198
|
+
risks associated with Your exercise of permissions under this License.
|
|
199
|
+
|
|
200
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
201
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
202
|
+
unless required by applicable law (such as deliberate and grossly
|
|
203
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
204
|
+
liable to You for damages, including any direct, indirect, special,
|
|
205
|
+
incidental, or consequential damages of any character arising as a
|
|
206
|
+
result of this License or out of the use or inability to use the
|
|
207
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
208
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
209
|
+
other commercial damages or losses), even if such Contributor
|
|
210
|
+
has been advised of the possibility of such damages.
|
|
211
|
+
|
|
212
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
213
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
214
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
215
|
+
or other liability obligations and/or rights consistent with this
|
|
216
|
+
License. However, in accepting such obligations, You may act only
|
|
217
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
218
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
219
|
+
defend, and hold each Contributor harmless for any liability
|
|
220
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
221
|
+
of your accepting any such warranty or additional liability.
|
|
222
|
+
|
|
223
|
+
END OF TERMS AND CONDITIONS
|
|
224
|
+
|
|
225
|
+
---
|
|
226
|
+
|
|
227
|
+
MIT License
|
|
228
|
+
|
|
229
|
+
Copyright (c) 2024-2025 Model Context Protocol a Series of LF Projects, LLC.
|
|
230
|
+
|
|
231
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
232
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
233
|
+
in the Software without restriction, including without limitation the rights
|
|
234
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
235
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
236
|
+
furnished to do so, subject to the following conditions:
|
|
237
|
+
|
|
238
|
+
The above copyright notice and this permission notice shall be included in all
|
|
239
|
+
copies or substantial portions of the Software.
|
|
240
|
+
|
|
241
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
242
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
243
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
244
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
245
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
246
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
247
|
+
SOFTWARE.
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
Creative Commons Attribution 4.0 International (CC-BY-4.0)
|
|
252
|
+
|
|
253
|
+
Documentation in this project (excluding specifications) is licensed under
|
|
254
|
+
CC-BY-4.0. See https://creativecommons.org/licenses/by/4.0/legalcode for
|
|
255
|
+
the full license text.
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
=== github.com/google/jsonschema-go v0.4.2 ===
|
|
259
|
+
|
|
260
|
+
LICENSE
|
|
261
|
+
MIT License
|
|
262
|
+
|
|
263
|
+
Copyright (c) 2025 JSON Schema Go Project Authors
|
|
264
|
+
|
|
265
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
266
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
267
|
+
in the Software without restriction, including without limitation the rights
|
|
268
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
269
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
270
|
+
furnished to do so, subject to the following conditions:
|
|
271
|
+
|
|
272
|
+
The above copyright notice and this permission notice shall be included in all
|
|
273
|
+
copies or substantial portions of the Software.
|
|
274
|
+
|
|
275
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
276
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
277
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
278
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
279
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
280
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
281
|
+
SOFTWARE.
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
=== github.com/segmentio/asm v1.1.3 ===
|
|
285
|
+
|
|
286
|
+
LICENSE
|
|
287
|
+
MIT License
|
|
288
|
+
|
|
289
|
+
Copyright (c) 2021 Segment
|
|
290
|
+
|
|
291
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
292
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
293
|
+
in the Software without restriction, including without limitation the rights
|
|
294
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
295
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
296
|
+
furnished to do so, subject to the following conditions:
|
|
297
|
+
|
|
298
|
+
The above copyright notice and this permission notice shall be included in all
|
|
299
|
+
copies or substantial portions of the Software.
|
|
300
|
+
|
|
301
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
302
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
303
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
304
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
305
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
306
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
307
|
+
SOFTWARE.
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
=== github.com/segmentio/encoding v0.5.3 ===
|
|
311
|
+
|
|
312
|
+
LICENSE
|
|
313
|
+
MIT License
|
|
314
|
+
|
|
315
|
+
Copyright (c) 2019 Segment.io, Inc.
|
|
316
|
+
|
|
317
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
318
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
319
|
+
in the Software without restriction, including without limitation the rights
|
|
320
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
321
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
322
|
+
furnished to do so, subject to the following conditions:
|
|
323
|
+
|
|
324
|
+
The above copyright notice and this permission notice shall be included in all
|
|
325
|
+
copies or substantial portions of the Software.
|
|
326
|
+
|
|
327
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
328
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
329
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
330
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
331
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
332
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
333
|
+
SOFTWARE.
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
=== github.com/yosida95/uritemplate/v3 v3.0.2 ===
|
|
337
|
+
|
|
338
|
+
LICENSE
|
|
339
|
+
Copyright (C) 2016, Kohei YOSHIDA <https://yosida95.com/>. All rights reserved.
|
|
340
|
+
|
|
341
|
+
Redistribution and use in source and binary forms, with or without
|
|
342
|
+
modification, are permitted provided that the following conditions are met:
|
|
343
|
+
|
|
344
|
+
* Redistributions of source code must retain the above copyright
|
|
345
|
+
notice, this list of conditions and the following disclaimer.
|
|
346
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
347
|
+
notice, this list of conditions and the following disclaimer in the
|
|
348
|
+
documentation and/or other materials provided with the distribution.
|
|
349
|
+
* Neither the name of the copyright holder nor the names of its
|
|
350
|
+
contributors may be used to endorse or promote products derived from
|
|
351
|
+
this software without specific prior written permission.
|
|
352
|
+
|
|
353
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
354
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
355
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
356
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
357
|
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
358
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
359
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
360
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
361
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
362
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
363
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
=== golang.org/x/oauth2 v0.34.0 ===
|
|
367
|
+
|
|
368
|
+
LICENSE
|
|
369
|
+
Copyright 2009 The Go Authors.
|
|
370
|
+
|
|
371
|
+
Redistribution and use in source and binary forms, with or without
|
|
372
|
+
modification, are permitted provided that the following conditions are
|
|
373
|
+
met:
|
|
374
|
+
|
|
375
|
+
* Redistributions of source code must retain the above copyright
|
|
376
|
+
notice, this list of conditions and the following disclaimer.
|
|
377
|
+
* Redistributions in binary form must reproduce the above
|
|
378
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
379
|
+
in the documentation and/or other materials provided with the
|
|
380
|
+
distribution.
|
|
381
|
+
* Neither the name of Google LLC nor the names of its
|
|
382
|
+
contributors may be used to endorse or promote products derived from
|
|
383
|
+
this software without specific prior written permission.
|
|
384
|
+
|
|
385
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
386
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
387
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
388
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
389
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
390
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
391
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
392
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
393
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
394
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
395
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
=== golang.org/x/sys v0.40.0 ===
|
|
399
|
+
|
|
400
|
+
LICENSE
|
|
401
|
+
Copyright 2009 The Go Authors.
|
|
402
|
+
|
|
403
|
+
Redistribution and use in source and binary forms, with or without
|
|
404
|
+
modification, are permitted provided that the following conditions are
|
|
405
|
+
met:
|
|
406
|
+
|
|
407
|
+
* Redistributions of source code must retain the above copyright
|
|
408
|
+
notice, this list of conditions and the following disclaimer.
|
|
409
|
+
* Redistributions in binary form must reproduce the above
|
|
410
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
411
|
+
in the documentation and/or other materials provided with the
|
|
412
|
+
distribution.
|
|
413
|
+
* Neither the name of Google LLC nor the names of its
|
|
414
|
+
contributors may be used to endorse or promote products derived from
|
|
415
|
+
this software without specific prior written permission.
|
|
416
|
+
|
|
417
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
418
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
419
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
420
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
421
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
422
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
423
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
424
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
425
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
426
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
427
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
=== golang.org/x/sys v0.40.0 ===
|
|
431
|
+
|
|
432
|
+
PATENTS
|
|
433
|
+
Additional IP Rights Grant (Patents)
|
|
434
|
+
|
|
435
|
+
"This implementation" means the copyrightable works distributed by
|
|
436
|
+
Google as part of the Go project.
|
|
437
|
+
|
|
438
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
439
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
440
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
441
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
442
|
+
implementation of Go, where such license applies only to those patent
|
|
443
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
444
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
445
|
+
implementation of Go. This grant does not include claims that would be
|
|
446
|
+
infringed only as a consequence of further modification of this
|
|
447
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
448
|
+
order or agree to the institution of patent litigation against any
|
|
449
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
450
|
+
that this implementation of Go or any code incorporated within this
|
|
451
|
+
implementation of Go constitutes direct or contributory patent
|
|
452
|
+
infringement, or inducement of patent infringement, then any patent
|
|
453
|
+
rights granted to you under this License for this implementation of Go
|
|
454
|
+
shall terminate as of the date such litigation is filed.
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
=== Go runtime and standard library go1.26.5 ===
|
|
458
|
+
|
|
459
|
+
LICENSE
|
|
460
|
+
Copyright 2009 The Go Authors.
|
|
461
|
+
|
|
462
|
+
Redistribution and use in source and binary forms, with or without
|
|
463
|
+
modification, are permitted provided that the following conditions are
|
|
464
|
+
met:
|
|
465
|
+
|
|
466
|
+
* Redistributions of source code must retain the above copyright
|
|
467
|
+
notice, this list of conditions and the following disclaimer.
|
|
468
|
+
* Redistributions in binary form must reproduce the above
|
|
469
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
470
|
+
in the documentation and/or other materials provided with the
|
|
471
|
+
distribution.
|
|
472
|
+
* Neither the name of Google LLC nor the names of its
|
|
473
|
+
contributors may be used to endorse or promote products derived from
|
|
474
|
+
this software without specific prior written permission.
|
|
475
|
+
|
|
476
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
477
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
478
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
479
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
480
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
481
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
482
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
483
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
484
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
485
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
486
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
=== Go runtime and standard library go1.26.5 ===
|
|
490
|
+
|
|
491
|
+
PATENTS
|
|
492
|
+
Additional IP Rights Grant (Patents)
|
|
493
|
+
|
|
494
|
+
"This implementation" means the copyrightable works distributed by
|
|
495
|
+
Google as part of the Go project.
|
|
496
|
+
|
|
497
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
498
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
499
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
500
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
501
|
+
implementation of Go, where such license applies only to those patent
|
|
502
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
503
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
504
|
+
implementation of Go. This grant does not include claims that would be
|
|
505
|
+
infringed only as a consequence of further modification of this
|
|
506
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
507
|
+
order or agree to the institution of patent litigation against any
|
|
508
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
509
|
+
that this implementation of Go or any code incorporated within this
|
|
510
|
+
implementation of Go constitutes direct or contributory patent
|
|
511
|
+
infringement, or inducement of patent infringement, then any patent
|
|
512
|
+
rights granted to you under this License for this implementation of Go
|
|
513
|
+
shall terminate as of the date such litigation is filed.
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
=== Go go1.26.5 bundled sources ===
|
|
517
|
+
|
|
518
|
+
src/crypto/internal/boring/LICENSE
|
|
519
|
+
The Go source code and supporting files in this directory
|
|
520
|
+
are covered by the usual Go license (see ../../../../LICENSE).
|
|
521
|
+
|
|
522
|
+
When building with GOEXPERIMENT=boringcrypto, the following applies.
|
|
523
|
+
|
|
524
|
+
The goboringcrypto_linux_amd64.syso object file is built
|
|
525
|
+
from BoringSSL source code by build/build.sh and is covered
|
|
526
|
+
by the BoringSSL license reproduced below and also at
|
|
527
|
+
https://boringssl.googlesource.com/boringssl/+/fips-20220613/LICENSE.
|
|
528
|
+
|
|
529
|
+
BoringSSL is a fork of OpenSSL. As such, large parts of it fall under OpenSSL
|
|
530
|
+
licensing. Files that are completely new have a Google copyright and an ISC
|
|
531
|
+
license. This license is reproduced at the bottom of this file.
|
|
532
|
+
|
|
533
|
+
Contributors to BoringSSL are required to follow the CLA rules for Chromium:
|
|
534
|
+
https://cla.developers.google.com/clas
|
|
535
|
+
|
|
536
|
+
Some files from Intel are under yet another license, which is also included
|
|
537
|
+
underneath.
|
|
538
|
+
|
|
539
|
+
The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the
|
|
540
|
+
OpenSSL License and the original SSLeay license apply to the toolkit. See below
|
|
541
|
+
for the actual license texts. Actually both licenses are BSD-style Open Source
|
|
542
|
+
licenses. In case of any license issues related to OpenSSL please contact
|
|
543
|
+
openssl-core@openssl.org.
|
|
544
|
+
|
|
545
|
+
The following are Google-internal bug numbers where explicit permission from
|
|
546
|
+
some authors is recorded for use of their work. (This is purely for our own
|
|
547
|
+
record keeping.)
|
|
548
|
+
27287199
|
|
549
|
+
27287880
|
|
550
|
+
27287883
|
|
551
|
+
|
|
552
|
+
OpenSSL License
|
|
553
|
+
---------------
|
|
554
|
+
|
|
555
|
+
/* ====================================================================
|
|
556
|
+
* Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.
|
|
557
|
+
*
|
|
558
|
+
* Redistribution and use in source and binary forms, with or without
|
|
559
|
+
* modification, are permitted provided that the following conditions
|
|
560
|
+
* are met:
|
|
561
|
+
*
|
|
562
|
+
* 1. Redistributions of source code must retain the above copyright
|
|
563
|
+
* notice, this list of conditions and the following disclaimer.
|
|
564
|
+
*
|
|
565
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
566
|
+
* notice, this list of conditions and the following disclaimer in
|
|
567
|
+
* the documentation and/or other materials provided with the
|
|
568
|
+
* distribution.
|
|
569
|
+
*
|
|
570
|
+
* 3. All advertising materials mentioning features or use of this
|
|
571
|
+
* software must display the following acknowledgment:
|
|
572
|
+
* "This product includes software developed by the OpenSSL Project
|
|
573
|
+
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
|
574
|
+
*
|
|
575
|
+
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
576
|
+
* endorse or promote products derived from this software without
|
|
577
|
+
* prior written permission. For written permission, please contact
|
|
578
|
+
* openssl-core@openssl.org.
|
|
579
|
+
*
|
|
580
|
+
* 5. Products derived from this software may not be called "OpenSSL"
|
|
581
|
+
* nor may "OpenSSL" appear in their names without prior written
|
|
582
|
+
* permission of the OpenSSL Project.
|
|
583
|
+
*
|
|
584
|
+
* 6. Redistributions of any form whatsoever must retain the following
|
|
585
|
+
* acknowledgment:
|
|
586
|
+
* "This product includes software developed by the OpenSSL Project
|
|
587
|
+
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
|
588
|
+
*
|
|
589
|
+
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
590
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
591
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
592
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
593
|
+
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
594
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
595
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
596
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
597
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
598
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
599
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
600
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
601
|
+
* ====================================================================
|
|
602
|
+
*
|
|
603
|
+
* This product includes cryptographic software written by Eric Young
|
|
604
|
+
* (eay@cryptsoft.com). This product includes software written by Tim
|
|
605
|
+
* Hudson (tjh@cryptsoft.com).
|
|
606
|
+
*
|
|
607
|
+
*/
|
|
608
|
+
|
|
609
|
+
Original SSLeay License
|
|
610
|
+
-----------------------
|
|
611
|
+
|
|
612
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
|
613
|
+
* All rights reserved.
|
|
614
|
+
*
|
|
615
|
+
* This package is an SSL implementation written
|
|
616
|
+
* by Eric Young (eay@cryptsoft.com).
|
|
617
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
|
618
|
+
*
|
|
619
|
+
* This library is free for commercial and non-commercial use as long as
|
|
620
|
+
* the following conditions are aheared to. The following conditions
|
|
621
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
|
622
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
|
623
|
+
* included with this distribution is covered by the same copyright terms
|
|
624
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
|
625
|
+
*
|
|
626
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
|
627
|
+
* the code are not to be removed.
|
|
628
|
+
* If this package is used in a product, Eric Young should be given attribution
|
|
629
|
+
* as the author of the parts of the library used.
|
|
630
|
+
* This can be in the form of a textual message at program startup or
|
|
631
|
+
* in documentation (online or textual) provided with the package.
|
|
632
|
+
*
|
|
633
|
+
* Redistribution and use in source and binary forms, with or without
|
|
634
|
+
* modification, are permitted provided that the following conditions
|
|
635
|
+
* are met:
|
|
636
|
+
* 1. Redistributions of source code must retain the copyright
|
|
637
|
+
* notice, this list of conditions and the following disclaimer.
|
|
638
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
639
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
640
|
+
* documentation and/or other materials provided with the distribution.
|
|
641
|
+
* 3. All advertising materials mentioning features or use of this software
|
|
642
|
+
* must display the following acknowledgement:
|
|
643
|
+
* "This product includes cryptographic software written by
|
|
644
|
+
* Eric Young (eay@cryptsoft.com)"
|
|
645
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
|
646
|
+
* being used are not cryptographic related :-).
|
|
647
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
|
648
|
+
* the apps directory (application code) you must include an acknowledgement:
|
|
649
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
|
650
|
+
*
|
|
651
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
|
652
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
653
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
654
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
655
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
656
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
657
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
658
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
659
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
660
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
661
|
+
* SUCH DAMAGE.
|
|
662
|
+
*
|
|
663
|
+
* The licence and distribution terms for any publically available version or
|
|
664
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
|
665
|
+
* copied and put under another distribution licence
|
|
666
|
+
* [including the GNU Public Licence.]
|
|
667
|
+
*/
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
ISC license used for completely new code in BoringSSL:
|
|
671
|
+
|
|
672
|
+
/* Copyright (c) 2015, Google Inc.
|
|
673
|
+
*
|
|
674
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
|
675
|
+
* purpose with or without fee is hereby granted, provided that the above
|
|
676
|
+
* copyright notice and this permission notice appear in all copies.
|
|
677
|
+
*
|
|
678
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
679
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
680
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
681
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
682
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
683
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
684
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
Some files from Intel carry the following license:
|
|
688
|
+
|
|
689
|
+
# Copyright (c) 2012, Intel Corporation
|
|
690
|
+
#
|
|
691
|
+
# All rights reserved.
|
|
692
|
+
#
|
|
693
|
+
# Redistribution and use in source and binary forms, with or without
|
|
694
|
+
# modification, are permitted provided that the following conditions are
|
|
695
|
+
# met:
|
|
696
|
+
#
|
|
697
|
+
# * Redistributions of source code must retain the above copyright
|
|
698
|
+
# notice, this list of conditions and the following disclaimer.
|
|
699
|
+
#
|
|
700
|
+
# * Redistributions in binary form must reproduce the above copyright
|
|
701
|
+
# notice, this list of conditions and the following disclaimer in the
|
|
702
|
+
# documentation and/or other materials provided with the
|
|
703
|
+
# distribution.
|
|
704
|
+
#
|
|
705
|
+
# * Neither the name of the Intel Corporation nor the names of its
|
|
706
|
+
# contributors may be used to endorse or promote products derived from
|
|
707
|
+
# this software without specific prior written permission.
|
|
708
|
+
#
|
|
709
|
+
#
|
|
710
|
+
# THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION ""AS IS"" AND ANY
|
|
711
|
+
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
712
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
713
|
+
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION OR
|
|
714
|
+
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
715
|
+
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
716
|
+
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
717
|
+
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
718
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
719
|
+
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
720
|
+
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
=== Go go1.26.5 bundled sources ===
|
|
724
|
+
|
|
725
|
+
src/vendor/golang.org/x/crypto/LICENSE
|
|
726
|
+
Copyright 2009 The Go Authors.
|
|
727
|
+
|
|
728
|
+
Redistribution and use in source and binary forms, with or without
|
|
729
|
+
modification, are permitted provided that the following conditions are
|
|
730
|
+
met:
|
|
731
|
+
|
|
732
|
+
* Redistributions of source code must retain the above copyright
|
|
733
|
+
notice, this list of conditions and the following disclaimer.
|
|
734
|
+
* Redistributions in binary form must reproduce the above
|
|
735
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
736
|
+
in the documentation and/or other materials provided with the
|
|
737
|
+
distribution.
|
|
738
|
+
* Neither the name of Google LLC nor the names of its
|
|
739
|
+
contributors may be used to endorse or promote products derived from
|
|
740
|
+
this software without specific prior written permission.
|
|
741
|
+
|
|
742
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
743
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
744
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
745
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
746
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
747
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
748
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
749
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
750
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
751
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
752
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
=== Go go1.26.5 bundled sources ===
|
|
756
|
+
|
|
757
|
+
src/vendor/golang.org/x/crypto/PATENTS
|
|
758
|
+
Additional IP Rights Grant (Patents)
|
|
759
|
+
|
|
760
|
+
"This implementation" means the copyrightable works distributed by
|
|
761
|
+
Google as part of the Go project.
|
|
762
|
+
|
|
763
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
764
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
765
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
766
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
767
|
+
implementation of Go, where such license applies only to those patent
|
|
768
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
769
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
770
|
+
implementation of Go. This grant does not include claims that would be
|
|
771
|
+
infringed only as a consequence of further modification of this
|
|
772
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
773
|
+
order or agree to the institution of patent litigation against any
|
|
774
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
775
|
+
that this implementation of Go or any code incorporated within this
|
|
776
|
+
implementation of Go constitutes direct or contributory patent
|
|
777
|
+
infringement, or inducement of patent infringement, then any patent
|
|
778
|
+
rights granted to you under this License for this implementation of Go
|
|
779
|
+
shall terminate as of the date such litigation is filed.
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
=== Go go1.26.5 bundled sources ===
|
|
783
|
+
|
|
784
|
+
src/vendor/golang.org/x/net/LICENSE
|
|
785
|
+
Copyright 2009 The Go Authors.
|
|
786
|
+
|
|
787
|
+
Redistribution and use in source and binary forms, with or without
|
|
788
|
+
modification, are permitted provided that the following conditions are
|
|
789
|
+
met:
|
|
790
|
+
|
|
791
|
+
* Redistributions of source code must retain the above copyright
|
|
792
|
+
notice, this list of conditions and the following disclaimer.
|
|
793
|
+
* Redistributions in binary form must reproduce the above
|
|
794
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
795
|
+
in the documentation and/or other materials provided with the
|
|
796
|
+
distribution.
|
|
797
|
+
* Neither the name of Google LLC nor the names of its
|
|
798
|
+
contributors may be used to endorse or promote products derived from
|
|
799
|
+
this software without specific prior written permission.
|
|
800
|
+
|
|
801
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
802
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
803
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
804
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
805
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
806
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
807
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
808
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
809
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
810
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
811
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
=== Go go1.26.5 bundled sources ===
|
|
815
|
+
|
|
816
|
+
src/vendor/golang.org/x/net/PATENTS
|
|
817
|
+
Additional IP Rights Grant (Patents)
|
|
818
|
+
|
|
819
|
+
"This implementation" means the copyrightable works distributed by
|
|
820
|
+
Google as part of the Go project.
|
|
821
|
+
|
|
822
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
823
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
824
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
825
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
826
|
+
implementation of Go, where such license applies only to those patent
|
|
827
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
828
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
829
|
+
implementation of Go. This grant does not include claims that would be
|
|
830
|
+
infringed only as a consequence of further modification of this
|
|
831
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
832
|
+
order or agree to the institution of patent litigation against any
|
|
833
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
834
|
+
that this implementation of Go or any code incorporated within this
|
|
835
|
+
implementation of Go constitutes direct or contributory patent
|
|
836
|
+
infringement, or inducement of patent infringement, then any patent
|
|
837
|
+
rights granted to you under this License for this implementation of Go
|
|
838
|
+
shall terminate as of the date such litigation is filed.
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
=== Go go1.26.5 bundled sources ===
|
|
842
|
+
|
|
843
|
+
src/vendor/golang.org/x/sys/LICENSE
|
|
844
|
+
Copyright 2009 The Go Authors.
|
|
845
|
+
|
|
846
|
+
Redistribution and use in source and binary forms, with or without
|
|
847
|
+
modification, are permitted provided that the following conditions are
|
|
848
|
+
met:
|
|
849
|
+
|
|
850
|
+
* Redistributions of source code must retain the above copyright
|
|
851
|
+
notice, this list of conditions and the following disclaimer.
|
|
852
|
+
* Redistributions in binary form must reproduce the above
|
|
853
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
854
|
+
in the documentation and/or other materials provided with the
|
|
855
|
+
distribution.
|
|
856
|
+
* Neither the name of Google LLC nor the names of its
|
|
857
|
+
contributors may be used to endorse or promote products derived from
|
|
858
|
+
this software without specific prior written permission.
|
|
859
|
+
|
|
860
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
861
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
862
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
863
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
864
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
865
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
866
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
867
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
868
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
869
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
870
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
=== Go go1.26.5 bundled sources ===
|
|
874
|
+
|
|
875
|
+
src/vendor/golang.org/x/sys/PATENTS
|
|
876
|
+
Additional IP Rights Grant (Patents)
|
|
877
|
+
|
|
878
|
+
"This implementation" means the copyrightable works distributed by
|
|
879
|
+
Google as part of the Go project.
|
|
880
|
+
|
|
881
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
882
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
883
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
884
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
885
|
+
implementation of Go, where such license applies only to those patent
|
|
886
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
887
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
888
|
+
implementation of Go. This grant does not include claims that would be
|
|
889
|
+
infringed only as a consequence of further modification of this
|
|
890
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
891
|
+
order or agree to the institution of patent litigation against any
|
|
892
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
893
|
+
that this implementation of Go or any code incorporated within this
|
|
894
|
+
implementation of Go constitutes direct or contributory patent
|
|
895
|
+
infringement, or inducement of patent infringement, then any patent
|
|
896
|
+
rights granted to you under this License for this implementation of Go
|
|
897
|
+
shall terminate as of the date such litigation is filed.
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
=== Go go1.26.5 bundled sources ===
|
|
901
|
+
|
|
902
|
+
src/vendor/golang.org/x/text/LICENSE
|
|
903
|
+
Copyright 2009 The Go Authors.
|
|
904
|
+
|
|
905
|
+
Redistribution and use in source and binary forms, with or without
|
|
906
|
+
modification, are permitted provided that the following conditions are
|
|
907
|
+
met:
|
|
908
|
+
|
|
909
|
+
* Redistributions of source code must retain the above copyright
|
|
910
|
+
notice, this list of conditions and the following disclaimer.
|
|
911
|
+
* Redistributions in binary form must reproduce the above
|
|
912
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
913
|
+
in the documentation and/or other materials provided with the
|
|
914
|
+
distribution.
|
|
915
|
+
* Neither the name of Google LLC nor the names of its
|
|
916
|
+
contributors may be used to endorse or promote products derived from
|
|
917
|
+
this software without specific prior written permission.
|
|
918
|
+
|
|
919
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
920
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
921
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
922
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
923
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
924
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
925
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
926
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
927
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
928
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
929
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
=== Go go1.26.5 bundled sources ===
|
|
933
|
+
|
|
934
|
+
src/vendor/golang.org/x/text/PATENTS
|
|
935
|
+
Additional IP Rights Grant (Patents)
|
|
936
|
+
|
|
937
|
+
"This implementation" means the copyrightable works distributed by
|
|
938
|
+
Google as part of the Go project.
|
|
939
|
+
|
|
940
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
941
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
942
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
943
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
944
|
+
implementation of Go, where such license applies only to those patent
|
|
945
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
946
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
947
|
+
implementation of Go. This grant does not include claims that would be
|
|
948
|
+
infringed only as a consequence of further modification of this
|
|
949
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
950
|
+
order or agree to the institution of patent litigation against any
|
|
951
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
952
|
+
that this implementation of Go or any code incorporated within this
|
|
953
|
+
implementation of Go constitutes direct or contributory patent
|
|
954
|
+
infringement, or inducement of patent infringement, then any patent
|
|
955
|
+
rights granted to you under this License for this implementation of Go
|
|
956
|
+
shall terminate as of the date such litigation is filed.
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# Third-party notices for sushiro-cli
|
|
2
|
+
|
|
3
|
+
The root [MIT LICENSE](LICENSE), copyright (c) 2026 lmxx1234567, covers this
|
|
4
|
+
project's own contributions. It does not replace third-party licenses or claim
|
|
5
|
+
ownership of upstream code. This distribution contains components with different
|
|
6
|
+
licenses. Complete collected texts are in [THIRD_PARTY_LICENSES.txt](THIRD_PARTY_LICENSES.txt).
|
|
7
|
+
|
|
8
|
+
## Ryujoxys/sushiro-overdose — MIT
|
|
9
|
+
|
|
10
|
+
**sushiro-cli builds on the protocol research and implementation of
|
|
11
|
+
[Ryujoxys/sushiro-overdose](https://github.com/Ryujoxys/sushiro-overdose).**
|
|
12
|
+
Reference revision: `e273df046789773616c7851c0bea14d4546f47e5` (audited 2026-09-16).
|
|
13
|
+
|
|
14
|
+
The API client is a rewritten adaptation of upstream request construction,
|
|
15
|
+
query-versus-reservation authorization selection, business-error semantics and
|
|
16
|
+
nested reservation parsing. The `Slot` model is reproduced; other response
|
|
17
|
+
models are reduced/adapted. Store-list coordinates and result-count defaults,
|
|
18
|
+
and the built-in public-query token, derive from upstream `queue_live.go`.
|
|
19
|
+
Authentication import research also consulted upstream capture/import code.
|
|
20
|
+
See [CREDITS.md](CREDITS.md) and the [provenance audit](https://github.com/lmxx1234567/sushiro-cli/blob/0a66837e75c06de098527308ce27e97ce0ee5ee8/docs/provenance.md)
|
|
21
|
+
for specific files, changes and history. This is not a claim of completely
|
|
22
|
+
independent authorship or official Sushiro affiliation.
|
|
23
|
+
|
|
24
|
+
The full upstream notice below must be retained with distributed copies or
|
|
25
|
+
substantial portions. It is also included in the standalone license bundle.
|
|
26
|
+
|
|
27
|
+
MIT License
|
|
28
|
+
|
|
29
|
+
Copyright (c) 2026 Ryujoxys
|
|
30
|
+
|
|
31
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
32
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
33
|
+
in the Software without restriction, including without limitation the rights
|
|
34
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
35
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
36
|
+
furnished to do so, subject to the following conditions:
|
|
37
|
+
|
|
38
|
+
The above copyright notice and this permission notice shall be included in all
|
|
39
|
+
copies or substantial portions of the Software.
|
|
40
|
+
|
|
41
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
42
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
43
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
44
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
45
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
46
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
47
|
+
SOFTWARE.
|
|
48
|
+
|
|
49
|
+
## Pinned runtime dependencies
|
|
50
|
+
|
|
51
|
+
| Component | Version | License and attribution scope |
|
|
52
|
+
| --- | --- | --- |
|
|
53
|
+
| [modelcontextprotocol/go-sdk](https://github.com/modelcontextprotocol/go-sdk/blob/v1.4.0/LICENSE) | v1.4.0 | Apache-2.0 for new/relicensed contributions; original MIT remains for contributions without relicensing consent. SDK documentation excluding specifications is CC-BY-4.0. Preserve the complete transition statement and license texts. This is not an MIT-only component or a blanket choice between MIT and Apache. |
|
|
54
|
+
| [google/jsonschema-go](https://github.com/google/jsonschema-go/blob/v0.4.2/LICENSE) | v0.4.2 | MIT |
|
|
55
|
+
| [segmentio/asm](https://github.com/segmentio/asm/blob/v1.1.3/LICENSE) | v1.1.3 | MIT |
|
|
56
|
+
| [segmentio/encoding](https://github.com/segmentio/encoding/blob/v0.5.3/LICENSE) | v0.5.3 | Root MIT; Go-derived JSON code retains Go Authors BSD notices, covered by the included Go license. The separate Apache-2.0 `json/fuzz/LICENSE` belongs to the unlinked fuzz tool, not the runtime package. |
|
|
57
|
+
| [yosida95/uritemplate](https://github.com/yosida95/uritemplate/blob/v3.0.2/LICENSE) | v3.0.2 | BSD-3-Clause |
|
|
58
|
+
| [golang.org/x/oauth2](https://github.com/golang/oauth2/blob/v0.34.0/LICENSE) | v0.34.0 | BSD-3-Clause |
|
|
59
|
+
| [golang.org/x/sys](https://github.com/golang/sys/blob/v0.40.0/LICENSE) | v0.40.0 | BSD-3-Clause; additional `PATENTS` grant preserved |
|
|
60
|
+
| [Go runtime/standard library](https://github.com/golang/go/blob/go1.26.5/LICENSE) | go1.26.5 audited toolchain | BSD-3-Clause and `PATENTS`; bundled x/crypto, x/net, x/sys, x/text license/patent texts are included separately. The conditional boringcrypto notice is preserved with its original scope. |
|
|
61
|
+
|
|
62
|
+
The seven module versions and checksums are locked in `go.mod` / `go.sum`.
|
|
63
|
+
The build toolchain is separately recorded in the release build manifest; changing
|
|
64
|
+
it requires refreshing this inventory. No separate `NOTICE` file was found in
|
|
65
|
+
these seven downloaded module trees or the inspected Go dependency ancestors.
|
|
66
|
+
Do not remove or replace a future upstream `NOTICE`: applicable attribution
|
|
67
|
+
notices must travel with the distribution, including Apache-2.0 section 4(d).
|
|
68
|
+
|
|
69
|
+
## Distribution requirements
|
|
70
|
+
|
|
71
|
+
Ship `LICENSE`, `THIRD_PARTY_NOTICES.md`, `THIRD_PARTY_LICENSES.txt`, and
|
|
72
|
+
`CREDITS.md` with every standalone binary archive and npm package, including each
|
|
73
|
+
platform package and the wrapper. A link to an upstream license is not a substitute
|
|
74
|
+
for the required license text. Source distributions also retain the provenance
|
|
75
|
+
audit and existing source copyright/license notices. This four-file set is the
|
|
76
|
+
project's packaging rule; it includes both license obligations and our more
|
|
77
|
+
visible credit policy.
|
|
78
|
+
|
|
79
|
+
For Apache-covered code retain applicable source notices and mark modified
|
|
80
|
+
third-party files if any are changed. No SDK fork, patched module or vendored SDK
|
|
81
|
+
source is present in the audited baseline. SDK documentation is not copied into
|
|
82
|
+
our release package; importing its runtime does not relicense our own docs under
|
|
83
|
+
CC-BY-4.0. If SDK docs are later copied, review their attribution/license separately.
|
|
84
|
+
|
|
85
|
+
The public-query token is retained from published upstream source by explicit
|
|
86
|
+
project-owner choice. A software license does not establish that token's issuer,
|
|
87
|
+
ownership, lifetime, transferability, or permission to access Sushiro's backend.
|
|
88
|
+
Successful public read-only checks are operational evidence, not service
|
|
89
|
+
operator authorization. Upstream credit is not an endorsement by Ryujoxys,
|
|
90
|
+
Sushiro, the MCP project or any dependency author.
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.1.2",
|
|
3
|
+
"description": "Sushiro China CLI and stdio MCP",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"private": false,
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/lmxx1234567/sushiro-cli.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/lmxx1234567/sushiro-cli#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/lmxx1234567/sushiro-cli/issues"
|
|
16
|
+
},
|
|
17
|
+
"name": "sushiro-cli-darwin-x64",
|
|
18
|
+
"os": [
|
|
19
|
+
"darwin"
|
|
20
|
+
],
|
|
21
|
+
"cpu": [
|
|
22
|
+
"x64"
|
|
23
|
+
],
|
|
24
|
+
"files": [
|
|
25
|
+
"bin/",
|
|
26
|
+
"legal/"
|
|
27
|
+
]
|
|
28
|
+
}
|