[package]
edition = "2024"
rust-version = "1.85"
name = "fairway"
version = "0.0.2"
build = false
exclude = ["/.github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The path for AI agents (and maybe some humans) to get things done"
documentation = "https://docs.rs/fairway"
readme = "README.md"
keywords = [
"ai",
"agents",
"agent-skills",
"git",
"cli",
]
categories = [
"artificial-intelligence",
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kudato/fairway"
[lib]
name = "fairway"
path = "src/lib.rs"
[[bin]]
name = "fairway"
path = "src/main.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1.26"
features = [
"rt",
"macros",
"process",
"fs",
"signal",
]
[dependencies.toml]
version = "0.9"
[dev-dependencies.tokio]
version = "1"
features = ["time"]
[lints.clippy]
mod_module_files = "warn"
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"