17 lines
340 B
TOML
17 lines
340 B
TOML
[package]
|
|
name = "grokboy"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "GrokBoy CLI — local chat + tool agent"
|
|
|
|
[[bin]]
|
|
name = "grokboy"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
grokboy-core = { path = "../grokboy-core" }
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|