[package]
edition = "2021"
rust-version = "1.75"
name = "agent-ctl"
version = "0.5.1"
authors = ["Jerome Guibert <jguibert@gmail.com>"]
build = false
exclude = [
".github/",
"tests/fixtures/",
"docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for agent hub validation, index generation, and skill management"
homepage = "https://github.com/geronimo-iia/agentctl"
documentation = "https://github.com/geronimo-iia/agentctl#readme"
readme = "README.md"
keywords = [
"cli",
"agent",
"hub",
"validation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/geronimo-iia/agentctl"
[lib]
name = "agentctl"
path = "src/lib.rs"
[[bin]]
name = "agentctl"
path = "src/main.rs"
[[test]]
name = "config_integration"
path = "tests/config_integration.rs"
[[test]]
name = "enhanced_ignore_patterns"
path = "tests/enhanced_ignore_patterns.rs"
[[test]]
name = "hub_force_refresh_test"
path = "tests/hub_force_refresh_test.rs"
[[test]]
name = "hub_integration"
path = "tests/hub_integration.rs"
[[test]]
name = "lifecycle_integration"
path = "tests/lifecycle_integration.rs"
[[test]]
name = "skill_export_test"
path = "tests/skill_export_test.rs"
[[test]]
name = "skill_integration"
path = "tests/skill_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "5"
[dependencies.git2]
version = "0.20"
features = ["vendored-libgit2"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.toml]
version = "0.8"
[dependencies.ureq]
version = "2"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true