[package]
edition = "2024"
name = "evo-cli"
version = "0.1.1"
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"LICENSE",
"README.md",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-first command registry with explicit execution and searchable metadata."
readme = "README.md"
keywords = [
"cli",
"agent",
"commands",
"search",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
[lib]
name = "evo"
path = "src/lib.rs"
[[bin]]
name = "evo"
path = "src/main.rs"
[[test]]
name = "cli_create_update"
path = "tests/cli_create_update.rs"
[[test]]
name = "cli_run_env"
path = "tests/cli_run_env.rs"
[[test]]
name = "cli_search_reindex"
path = "tests/cli_search_reindex.rs"
[[test]]
name = "cli_show_list"
path = "tests/cli_show_list.rs"
[dependencies.dialoguer]
version = "0.12"
features = ["fuzzy-select"]
[dependencies.rusqlite]
version = "0.38"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"