refactor: 拆分 gateway 单体为独立 crate,新增 systemd 部署方案

将 gateway 内部的 model-fetch、provider-transport、scheduler-core、
usage-runtime、video-tasks-core 模块提取为独立 crate;重构 gateway
内部模块结构(state/router/cache/data/query 等);移除大量遗留模块
文件;新增 systemd 二进制部署骨架及相关文档;更新前端 usage 相关
API 和组件。
This commit is contained in:
fawney19
2026-04-05 20:23:16 +08:00
parent cbc811f6ce
commit 763ff03a7b
777 changed files with 42659 additions and 21469 deletions

View File

@@ -0,0 +1,28 @@
[package]
name = "aether-provider-transport"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Provider transport core extracted from aether-gateway"
[dependencies]
aether-contracts.workspace = true
aether-crypto.workspace = true
aether-data.workspace = true
aether-video-tasks-core.workspace = true
async-trait.workspace = true
http.workspace = true
regex.workspace = true
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
url.workspace = true
uuid.workspace = true
[dev-dependencies]
axum = { version = "0.8", features = ["ws"] }