clap/clap_complete_fig/Cargo.toml

37 lines
810 B
TOML
Raw Normal View History

[package]
name = "clap_complete_fig"
2022-01-04 15:49:41 +00:00
version = "3.0.1"
edition = "2018"
include = [
"src/**/*",
"Cargo.toml",
"LICENSE-*",
"README.md"
]
description = "A generator library used with clap for Fig completion scripts"
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_fig"
documentation = "https://docs.rs/clap_complete_fig"
keywords = [
"clap",
"cli",
"generate",
"completion",
"fig",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[lib]
bench = false
[dependencies]
2021-12-31 20:34:55 +00:00
clap = { path = "../", version = "3.0.0", default-features = false, features = ["std"] }
clap_complete = { path = "../clap_complete", version = "3.0.0"}
[dev-dependencies]
pretty_assertions = "1.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]