mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
27 lines
707 B
TOML
27 lines
707 B
TOML
[package]
|
|
name = "litellm-rust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Rust port of LiteLLM's Mistral OCR transforms, exposed as a Python extension and a standalone HTTP server."
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "litellm_rust"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[[bin]]
|
|
name = "litellm-rust-server"
|
|
path = "src/bin/server.rs"
|
|
required-features = []
|
|
|
|
[features]
|
|
default = []
|
|
python = ["dep:pyo3"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.23", features = ["extension-module"], optional = true }
|
|
reqwest = { version = "0.12", features = ["blocking", "json"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
axum = "0.7"
|