[package] name = "agent-core" version = "0.1.0" edition.workspace = true license.workspace = true rust-version.workspace = true [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" color-eyre = "0.6" tokio = { version = "1", features = ["full"] } futures-util = "0.3" tracing = "0.1" async-trait = "0.1" chrono = "0.4" # Internal dependencies llm-core = { path = "../../llm/core" } permissions = { path = "../../platform/permissions" } tools-fs = { path = "../../tools/fs" } tools-bash = { path = "../../tools/bash" } tools-ask = { path = "../../tools/ask" } tools-todo = { path = "../../tools/todo" } tools-web = { path = "../../tools/web" } tools-plan = { path = "../../tools/plan" } [dev-dependencies] tempfile = "3.13"