31 lines
820 B
TOML
31 lines
820 B
TOML
[package]
|
|
name = "chrs-agent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ucxl = { path = "../UCXL" }
|
|
chrs-mail = { path = "../chrs-mail" }
|
|
chrs-graph = { path = "../chrs-graph" }
|
|
chrs-council = { path = "../chrs-council" }
|
|
chrs-backbeat = { path = "../chrs-backbeat" }
|
|
chrs-exec = { path = "../chrs-exec" }
|
|
chrs-prompts = { path = "../chrs-prompts" }
|
|
chrs-code-edit = { path = "../chrs-code-edit" }
|
|
chrs-discovery = { path = "../chrs-discovery" }
|
|
chrs-election = { path = "../chrs-election" }
|
|
git2 = "0.18"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "chrs-agent"
|
|
path = "src/bin/main.rs"
|