LazyBoy2/crates/lazyboy-core/Cargo.toml

28 lines
660 B
TOML
Raw Normal View History

[package]
2026-09-15 05:20:44 +00:00
name = "lazyboy-core"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Minimal GrokBot-like agent core (chat + tools + ReAct)"
[dependencies]
anyhow.workspace = true
2026-09-14 09:08:35 +00:00
axum.workspace = true
chrono.workspace = true
2026-09-14 09:08:35 +00:00
encoding_rs = "0.8"
futures-util.workspace = true
2026-09-14 09:08:35 +00:00
html2text = "0.17"
regex = "1"
reqwest.workspace = true
2026-09-13 16:38:32 +00:00
rusqlite = { version = "0.32", features = ["bundled"] }
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
2026-09-14 09:08:35 +00:00
tokio-tungstenite.workspace = true
tower-http.workspace = true
uuid.workspace = true
2026-09-13 16:38:32 +00:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"