- Add `figment` for config yamls - Small `Makefile.toml` fixes ? (docset seems still broken ??) - Copy `config.yaml` workspace & forge - Embed proxy_man in forge - Remove `backend_process.rs` and `process.rs` - Update `llama_proxy_man/Cargo.toml` and `config.rs` for new dependencies - Format
33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
TOML
[package]
|
|
name = "llama_proxy_man"
|
|
edition = "2021"
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full", "process"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
axum = { version = "0.7", features = ["macros"] }
|
|
hyper = { version = "1.4", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["cookies", "multipart", "json", "stream", "native-tls"] }
|
|
futures = "0.3.30"
|
|
anyhow = { version = "1.0.89", features = ["backtrace"] }
|
|
thiserror = "1.0.63"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
tracing = "0.1.40"
|
|
uuid = { version = "1.10.0", features = ["v4", "v7", "serde"] }
|
|
pin-project-lite = "0.2.14"
|
|
tower = { version = "0.4", features = ["tokio", "tracing"] }
|
|
tower-http = { version = "0.5.2", features = ["trace"] }
|
|
reqwest-retry = "0.6.1"
|
|
reqwest-middleware = { version = "0.3.3", features = ["charset", "http2", "json", "multipart", "rustls-tls"] }
|
|
itertools = "0.13.0"
|
|
openport = { version = "0.1.1", features = ["rand"] }
|
|
derive_more = { version = "2.0.1", features = ["deref"] }
|
|
figment = { version = "0.10.19", features = ["env", "json", "toml", "yaml"] }
|