28 lines
660 B
TOML
28 lines
660 B
TOML
[package]
|
|
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
|
|
axum.workspace = true
|
|
chrono.workspace = true
|
|
encoding_rs = "0.8"
|
|
futures-util.workspace = true
|
|
html2text = "0.17"
|
|
regex = "1"
|
|
reqwest.workspace = true
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tokio-tungstenite.workspace = true
|
|
tower-http.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|