mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
* wip * refactor(tests): move sdk function tracing into rust python harness * dead code * fix: handle harness keyboard interrupts * refactor(tests): deduplicate rust python harness helpers * fix(harness): expose validated strategy choices * wip * refactor(harness): let strategies own parity reports * docs(harness): update strategy structure * refactor(harness): localize strategy report views * wip * fix(harness): satisfy mapping runner type checks * fix(harness): clarify trace parity output * wip * fix(harness): clarify unit mapping report * fix(harness): finalize trace parity contracts * refactor(harness): structure parity contracts * feat: derive unit test mapping from traces * feat(harness): map rstest test families * feat(ocr): port Azure document intelligence tests * feat(harness): enforce complete unit mappings * feat(ocr): add reducto core transforms * feat(harness): classify host-only unit tests * fix(ocr): complete Rust provider plumbing * fix(harness): reuse OCR parity workers
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "litellm-core"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
base64.workspace = true
|
|
rand.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, optional = true }
|
|
sha2.workspace = true
|
|
aws-config = { version = "1.9.0", default-features = false, features = ["rustls", "rt-tokio"], optional = true }
|
|
aws-credential-types = { version = "1.3.0", features = ["hardcoded-credentials"], optional = true }
|
|
aws-sdk-sts = { version = "1.108.0", default-features = false, features = ["rustls", "rt-tokio"], optional = true }
|
|
aws-sigv4 = { version = "1.5.1", optional = true }
|
|
aws-types = { version = "1.4.0", optional = true }
|
|
aws-smithy-runtime-api = { version = "1.13.0", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
bedrock-auth = [
|
|
"dep:aws-config",
|
|
"dep:aws-credential-types",
|
|
"dep:aws-sdk-sts",
|
|
"dep:aws-sigv4",
|
|
"dep:aws-types",
|
|
"dep:aws-smithy-runtime-api",
|
|
]
|
|
observability = ["dep:tracing-subscriber"]
|
|
|
|
[dev-dependencies]
|
|
rstest.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
tracing-subscriber.workspace = true
|