mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
* perf(rust): use pythonize for bridge serialization * perf(rust): benchmark serialization payload sizes * refactor(rust): remove mutable benchmark state
31 lines
672 B
TOML
31 lines
672 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 = ["extension-module"]
|
|
extension-module = ["pyo3/extension-module"]
|
|
|
|
[dependencies]
|
|
litellm-core = { workspace = true, features = ["bedrock-auth"] }
|
|
litellm-ai-gateway = { workspace = true, default-features = false }
|
|
pyo3.workspace = true
|
|
pyo3-async-runtimes.workspace = true
|
|
pythonize.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.8.2"
|
|
|
|
[[bench]]
|
|
name = "serialization"
|
|
harness = false
|