478bf1927b
Adds license (MIT OR Apache-2.0), repository (placeholder TODO URL), readme, keywords, categories, rust-version, dual LICENSE files, and a README install section. Adds a regression test asserting these fields remain present so future edits cannot silently break cargo publish. `cargo install --path crates/dirigent_fermata --features cli` produces a working `fermata` binary; `cargo publish --dry-run` is clean.
45 lines
1007 B
TOML
45 lines
1007 B
TOML
[package]
|
|
name = "dirigent_fermata"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "Harness-agnostic policy gate for AI coding agents (.botignore + botignore.toml)"
|
|
license = "MIT OR Apache-2.0"
|
|
# TODO: replace with real URL before publish
|
|
repository = "https://github.com/TODO/dirigent-fermata"
|
|
readme = "README.md"
|
|
keywords = ["ai", "agents", "security", "policy", "gitignore"]
|
|
categories = ["command-line-utilities", "development-tools"]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "fermata"
|
|
path = "src/bin/fermata.rs"
|
|
required-features = ["cli"]
|
|
|
|
[dependencies]
|
|
globset = "0.4"
|
|
ignore = "0.4"
|
|
walkdir = "2"
|
|
toml = "0.8"
|
|
regex = "1.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
clap = { version = "4.5", features = ["derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|
|
assert_cmd = "2.0"
|
|
predicates = "3.1"
|
|
|
|
[features]
|
|
default = ["cli", "harness-claude"]
|
|
cli = ["dep:clap"]
|
|
harness-claude = []
|
|
|
|
[lints]
|
|
workspace = true
|