mirror of
https://github.com/whit3rabbit/anyllm-proxy.git
synced 2026-09-22 00:00:50 +00:00
Bump workspace + all inter-crate version refs from 0.15.1 to 0.16.0 (workspace Cargo.toml, anyllm_client pinned version, batch_engine, proxy's 8 internal deps, optimizer core/passes/scorer + cli + benches). Refresh Cargo.lock. Move CHANGELOG [Unreleased] -> [0.16.0] - 2026-07-16 and add a fresh empty [Unreleased]; bump the README deb filename to anyllm-proxy_0.16.0-1_amd64.deb and add the v0.16.0 compare link. Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
897 B
TOML
29 lines
897 B
TOML
[package]
|
|
name = "anyllm_batch_engine"
|
|
description = "Batch orchestration engine with job queue, workers, and event-driven notifications"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyllm_translate = { path = "../translator", version = "0.16.0" }
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt", "sync", "time", "macros"] }
|
|
async-trait = "0.1"
|
|
thiserror = "2"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
tracing = "0.1"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "native-tls"] }
|
|
url = "2"
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
hex = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
pretty_assertions = "1"
|