[package]
edition = "2021"
rust-version = "1.78"
name = "fire"
version = "0.6.0"
authors = ["An Long <aisk1988@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Turn functions into command-line applications with one attribute, like Python's fire"
documentation = "https://docs.rs/fire"
readme = "README.md"
keywords = [
"cli",
"args",
"argparse",
"command-line",
"fire",
]
categories = ["command-line-utilities"]
license = "BSD-2-Clause"
repository = "https://github.com/aisk/rust-fire"
[lib]
name = "fire"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.proc-macro2]
version = "^1.0.66"
[dependencies.quote]
version = "^1.0.32"
[dependencies.syn]
version = "^2.0.28"
features = ["full"]
[dev-dependencies.tokio]
version = "^1"
features = [
"rt-multi-thread",
"time",
]