mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
51 lines
1.8 KiB
TOML
51 lines
1.8 KiB
TOML
[package]
|
|
name = "litellm-ai-gateway"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "litellm_ai_gateway"
|
|
|
|
[[bin]]
|
|
name = "litellm-ai-gateway"
|
|
path = "src/main.rs"
|
|
required-features = ["server"]
|
|
|
|
[dependencies]
|
|
tracing.workspace = true
|
|
litellm-core = { workspace = true, features = ["bedrock-auth"] }
|
|
litellm-config.workspace = true
|
|
# reqwest (rustls + json) is used by io/ocr and ships realtime logs to the
|
|
# Python proxy callbacks API.
|
|
reqwest.workspace = true
|
|
# rustls and its root store are direct dependencies so `io::tls` can build the
|
|
# one TLS config the outbound dials use; see that module for why it has to.
|
|
rustls.workspace = true
|
|
rustls-native-certs.workspace = true
|
|
# `sync` powers the bounded mpsc channel the realtime logger drains.
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "time", "sync"] }
|
|
tokio-tungstenite.workspace = true
|
|
futures-util.workspace = true
|
|
serde_json.workspace = true
|
|
base64.workspace = true
|
|
axum = { workspace = true, features = ["ws"], optional = true }
|
|
serde.workspace = true
|
|
subtle = { workspace = true, optional = true }
|
|
# sha2 hashes the master key into user_api_key_hash (matches the proxy's
|
|
# SHA-256 hash_token) so the plaintext credential never enters a log payload.
|
|
sha2 = { workspace = true, optional = true }
|
|
tower = { version = "0.5.3", features = ["util"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
server = ["dep:axum", "dep:subtle", "dep:sha2"]
|
|
# Build the gateway's config from the proxy YAML via an embedded Python
|
|
# interpreter (links libpython; requires `litellm` importable at runtime).
|
|
python-config = ["litellm-config/python"]
|
|
trace-parity = ["server", "dep:tower", "litellm-core/observability"]
|
|
|
|
[dev-dependencies]
|
|
futures-channel = "0.3"
|
|
tower = { version = "0.5.3", features = ["util"] }
|