mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
* refactor(rust): extract config crate * refactor(config): split crate modules * refactor(gateway): remove gil health counter
16 lines
355 B
TOML
16 lines
355 B
TOML
[package]
|
|
name = "litellm-config"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
litellm-core.workspace = true
|
|
pyo3 = { workspace = true, features = ["auto-initialize"], optional = true }
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
python = ["dep:pyo3"]
|