e1d031b86f
新增托管式Streamable HTTP MCP端点并复用外部API Key鉴权 统一图片视频音频等生成请求为幂等异步提交和状态查询 提供可发现的使用说明、OpenAPI资源及完整Skill下载包 同步更新OpenAPI契约并规定接口变更必须连带维护 适配AI游戏创作Shell的异步提交轮询与安全重试 补齐MCP方法映射、异步Worker和客户端回归测试
67 lines
2.6 KiB
TOML
67 lines
2.6 KiB
TOML
[package]
|
|
name = "api-server"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
aes = { workspace = true }
|
|
async-stream = { workspace = true }
|
|
axum = { workspace = true, features = ["ws"] }
|
|
base64 = { workspace = true }
|
|
cbc = { workspace = true }
|
|
bytes = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
hex = { workspace = true }
|
|
image = { workspace = true, features = ["jpeg", "png", "webp"] }
|
|
http-body-util = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json", "multipart", "rustls-tls"] }
|
|
rmcp = { workspace = true, features = ["server", "transport-streamable-http-server"] }
|
|
webp = { workspace = true }
|
|
module-ai = { workspace = true }
|
|
module-assets = { workspace = true, features = ["server-service"] }
|
|
module-auth = { workspace = true }
|
|
module-editor-agent = { workspace = true }
|
|
module-runtime = { workspace = true }
|
|
platform-editor-agent = { workspace = true }
|
|
platform-audio = { workspace = true }
|
|
platform-auth = { workspace = true }
|
|
platform-hyper3d = { workspace = true }
|
|
platform-image = { workspace = true }
|
|
platform-llm = { workspace = true }
|
|
platform-matting = { workspace = true }
|
|
platform-oss = { workspace = true }
|
|
platform-speech = { workspace = true }
|
|
platform-wechat = { workspace = true }
|
|
hmac = { workspace = true }
|
|
ring = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha1 = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
shared-contracts = { workspace = true, features = ["oss-contracts"] }
|
|
shared-kernel = { workspace = true }
|
|
shared-logging = { workspace = true }
|
|
socket2 = { workspace = true }
|
|
spacetime-client = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "net", "time", "sync", "fs", "io-util", "signal", "process"] }
|
|
tokio-stream = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
time = { workspace = true, features = ["formatting"] }
|
|
tower-http = { workspace = true, features = ["trace"] }
|
|
tower = { workspace = true, features = ["util"] }
|
|
tracing = { workspace = true }
|
|
opentelemetry = { workspace = true }
|
|
url = { workspace = true }
|
|
urlencoding = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
zip = { workspace = true, features = ["deflate"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { workspace = true, features = ["Win32_Foundation", "Win32_System_Diagnostics_ToolHelp", "Win32_System_ProcessStatus", "Win32_System_Threading"] }
|
|
|
|
[dev-dependencies]
|
|
base64 = { workspace = true }
|
|
http-body-util = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json", "multipart", "rustls-tls"] }
|