mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
23 lines
659 B
TOML
23 lines
659 B
TOML
[workspace]
|
|
members = [
|
|
"crates/core",
|
|
"crates/providers",
|
|
"crates/python-bridge",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
repository = "https://github.com/BerriAI/litellm"
|
|
|
|
[workspace.dependencies]
|
|
litellm-core = { path = "crates/core" }
|
|
litellm-providers = { path = "crates/providers" }
|
|
pyo3 = "0.23.5"
|
|
pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|