18 lines
496 B
TOML
18 lines
496 B
TOML
|
|
[package]
|
||
|
|
name = "llm-proxy"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "llm.famzheng.me — gemma-4-31b-it 反向代理 + token 鉴权 + /chat web UI"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cube-core = { path = "../../crates/cube-core" }
|
||
|
|
axum = { workspace = true }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tower-http = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
reqwest = { workspace = true }
|