mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 01:10:23 +08:00
将 gateway 内部的 model-fetch、provider-transport、scheduler-core、 usage-runtime、video-tasks-core 模块提取为独立 crate;重构 gateway 内部模块结构(state/router/cache/data/query 等);移除大量遗留模块 文件;新增 systemd 二进制部署骨架及相关文档;更新前端 usage 相关 API 和组件。
23 lines
558 B
TOML
23 lines
558 B
TOML
[package]
|
|
name = "aether-runtime"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Shared runtime/bootstrap helpers for Aether Rust services"
|
|
|
|
[dependencies]
|
|
async-stream.workspace = true
|
|
axum = { version = "0.8" }
|
|
chrono.workspace = true
|
|
futures-util.workspace = true
|
|
redis.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
url.workspace = true
|
|
uuid.workspace = true
|