mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-23 00:41:13 +00:00
32 lines
757 B
TOML
32 lines
757 B
TOML
[package]
|
|
name = "agent"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
description = "A programmable agentic loop for coding agents"
|
|
repository = "https://github.com/brynary/attractor-rust"
|
|
readme = "README.md"
|
|
keywords = ["llm", "ai", "agent", "coding"]
|
|
categories = ["api-bindings"]
|
|
|
|
[dependencies]
|
|
llm = { path = "../llm" }
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
futures.workspace = true
|
|
async-trait.workspace = true
|
|
jsonschema.workspace = true
|
|
chrono.workspace = true
|
|
glob = "0.3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
|
|
[lints]
|
|
workspace = true
|