[package]
edition = "2021"
name = "hivemind-core"
version = "0.1.19"
authors = ["Antonio"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A structured orchestration system for agentic coding workflows"
readme = "CRATES.md"
keywords = [
"cli",
"orchestration",
"agents",
"workflow",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Antonio7098/hivemind"
[lib]
name = "hivemind"
path = "src/lib.rs"
[[bin]]
name = "hivemind"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.comfy-table]
version = "7"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "5"
[dependencies.fs2]
version = "0.4"
[dependencies.portable-pty]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.signal-hook]
version = "0.4"
[dependencies.thiserror]
version = "1.0"
[dependencies.tiny_http]
version = "0.12"
[dependencies.uuid]
version = "1.4"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
result_large_err = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = true
strip = true