mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-25 01:02:15 +00:00
custom_httpx mirrored a Python module that mixes transport plumbing with OCR orchestration. The transport half (media fetcher, transport errors, request and header helpers) now lives in litellm-http next to the pool, TLS, proxies and settings, and the OCR request handler moves to base_llm/ocr/handler.rs. Drops the unused deserialize_optional_param and stale dead_code allows. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "litellm-core"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
autotests = false
|
|
|
|
[dependencies]
|
|
litellm-types.workspace = true
|
|
litellm-core-utils.workspace = true
|
|
litellm-host.workspace = true
|
|
bytes.workspace = true
|
|
futures-util.workspace = true
|
|
base64.workspace = true
|
|
litellm-auth.workspace = true
|
|
litellm-auth-aws.workspace = true
|
|
litellm-http.workspace = true
|
|
litellm-llms.workspace = true
|
|
moka.workspace = true
|
|
mime_guess = "2.0.5"
|
|
rand.workspace = true
|
|
reqwest.workspace = true
|
|
rustls.workspace = true
|
|
rustls-native-certs.workspace = true
|
|
serde.workspace = true
|
|
serde_json = { workspace = true, features = ["preserve_order"] }
|
|
strum.workspace = true
|
|
subtle.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-tungstenite.workspace = true
|
|
thiserror.workspace = true
|
|
time.workspace = true
|
|
sha2.workspace = true
|
|
url.workspace = true
|
|
veil.workspace = true
|
|
|
|
[dev-dependencies]
|
|
litellm-auth-gcp.workspace = true
|
|
litellm-llms = { workspace = true, features = ["test-support"] }
|
|
rstest.workspace = true
|
|
rstest_reuse.workspace = true
|