LazyBoy2/crates/lazyboy-core/Cargo.toml

36 lines
1.1 KiB
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
2026-09-15 09:07:16 +00:00
base64 = "0.22"
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"
2026-09-15 09:07:16 +00:00
hyper = { version = "1", features = ["http1", "server"] }
hyper-util = { version = "0.1", features = ["tokio", "http1", "server"] }
rcgen = { version = "0.13", features = ["x509-parser"] }
2026-09-14 09:08:35 +00:00
regex = "1"
reqwest.workspace = true
2026-09-13 16:38:32 +00:00
rusqlite = { version = "0.32", features = ["bundled"] }
2026-09-15 09:07:16 +00:00
rustls = { version = "0.23", default-features = false, features = ["std", "tls12", "ring"] }
rustls-pemfile = "2"
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
2026-09-15 09:07:16 +00:00
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
2026-09-14 09:08:35 +00:00
tokio-tungstenite.workspace = true
2026-09-15 09:07:16 +00:00
tower = { version = "0.4", features = ["util"] }
2026-09-14 09:08:35 +00:00
tower-http.workspace = true
uuid.workspace = true
2026-09-13 16:38:32 +00:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"