litellm/litellm-rust/crates/python-bridge/Cargo.toml
Yujong Lee 23633445d7 refactor(rust): extract auth and cache crates
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-09-16 18:12:11 +00:00

37 lines
805 B
TOML

[package]
name = "litellm-python-bridge"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
[lib]
name = "_native"
crate-type = ["cdylib"]
[features]
default = ["abi3"]
abi3 = ["pyo3/abi3-py310"]
extension-module = ["pyo3/extension-module"]
panic-test = []
[dependencies]
futures-util.workspace = true
litellm-core.workspace = true
litellm-auth.workspace = true
litellm-token-counter.workspace = true
litellm-python-interop.workspace = true
pyo3.workspace = true
pyo3-async-runtimes.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["sync"] }
[dev-dependencies]
criterion.workspace = true
rstest.workspace = true
tokio-tungstenite.workspace = true
[[bench]]
name = "serialization"
harness = false