lazyBoy/crates/api/Cargo.toml

48 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2026-09-03 12:46:14 +00:00
[package]
name = "lazyboy-api"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
2026-09-03 12:46:14 +00:00
license.workspace = true
publish.workspace = true
[dependencies]
lazyboy-contracts.workspace = true
lazyboy-control.workspace = true
lazyboy-harness = { path = "../harness" }
lazyboy-sandbox = { path = "../sandbox" }
axum.workspace = true
tokio.workspace = true
serde.workspace = true
serde_json.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
sqlx.workspace = true
uuid.workspace = true
chrono.workspace = true
tower-http.workspace = true
rig-core.workspace = true
base64.workspace = true
sha2.workspace = true
2026-09-09 16:59:32 +00:00
hmac.workspace = true
2026-09-03 12:46:14 +00:00
hex.workspace = true
reqwest.workspace = true
tokio-tungstenite.workspace = true
futures-util = "0.3"
dotenvy = "0.15"
2026-09-06 07:32:48 +00:00
fastembed = { version = "6.0.2", default-features = false, features = ["hf-hub-rustls-tls", "ort-load-dynamic"] }
2026-09-10 14:42:17 +00:00
# Same ort fastembed pins. Used only to pre-load the ONNX Runtime dylib through a
# fallible path: ort's lazy loader `expect`s while holding its global lock, and the
# poisoned lock aborts the process in ort's exit hook.
ort = { version = "=2.0.0-rc.13", default-features = false, features = ["load-dynamic"] }
2026-09-11 02:47:43 +00:00
rmcp = { version = "3.2", default-features = false }
aes-gcm = "0.10"
cron = "0.15"
chrono-tz = "0.10"
rand = "0.8"
cap-std = "3"
[lints]
workspace = true