[package]
name = "confer-cli"
version = "0.6.11"
edition = "2021"
rust-version = "1.82"
description = "A git-native coordination substrate for fleets of AI agents — an append-only, signed, verifiable message log with a thin liveness layer, no database and no server."
license = "MIT OR Apache-2.0"
repository = "https://github.com/codeshrew/confer"
homepage = "https://github.com/codeshrew/confer"
readme = "README.md"
keywords = ["agents", "coordination", "git", "cli", "multi-agent"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "confer"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ulid = "1"
chrono = { version = "0.4", features = ["clock"] }
anyhow = "1"
notify = "6"
serde_yaml = "0.9"
toml = "0.8"
ratatui = { version = "0.30.2", optional = true }
crossterm = { version = "0.29.0", optional = true }
libc = "0.2.186"
tiny_http = { version = "0.12.0", optional = true }
semver = "1.0.28"
fs2 = "0.4.3"
axoupdater = { version = "0.10", features = ["blocking"] }
[profile.release]
strip = true
[profile.dev.package."*"]
debug = false
[profile.dist]
inherits = "release"
lto = "thin"
[features]
default = ["dashboard", "serve"]
dashboard = ["dep:ratatui", "dep:crossterm"]
serve = ["dep:tiny_http"]