argot-cmd 0.2.0

An agent-first command interface framework for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.94.0"
name = "argot-cmd"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An agent-first command interface framework for Rust"
homepage = "https://github.com/platinummonkey/argot-cmd"
documentation = "https://docs.rs/argot-cmd"
readme = "README.md"
keywords = [
    "cli",
    "agent",
    "mcp",
    "commands",
    "automation",
]
categories = [
    "command-line-interface",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/platinummonkey/argot-cmd"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
async = []
default = []
derive = ["dep:argot-cmd-derive"]
fuzzy = ["dep:fuzzy-matcher"]
mcp = []

[lib]
name = "argot_cmd"
path = "src/lib.rs"

[[example]]
name = "deploy_tool"
path = "examples/deploy_tool.rs"

[[example]]
name = "derive_example"
path = "examples/derive_example.rs"

[[example]]
name = "git_like"
path = "examples/git_like.rs"

[[example]]
name = "mcp_server"
path = "examples/mcp_server.rs"

[[test]]
name = "derive_test"
path = "tests/derive_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.argot-cmd-derive]
version = "0.2"
optional = true

[dependencies.fuzzy-matcher]
version = "0.3"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt",
    "macros",
]