2022-10-22 15:27:04 +00:00
|
|
|
[package]
|
|
|
|
name = "clap_complete_nushell"
|
|
|
|
authors = [ "nibon7 <nibon7@163.com>" ]
|
2022-10-31 14:56:41 +00:00
|
|
|
version = "0.1.2"
|
2022-10-22 15:27:04 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
description = "A generator library used with clap for Nushell completion scripts"
|
2022-10-31 10:56:28 +00:00
|
|
|
homepage = "https://github.com/nibon7/clap_complete_nushell"
|
2022-10-22 15:27:04 +00:00
|
|
|
repository = "https://github.com/nibon7/clap_complete_nushell"
|
|
|
|
readme = "./README.md"
|
|
|
|
categories = ["command-line-interface"]
|
|
|
|
keywords = [
|
|
|
|
"clap",
|
|
|
|
"cli",
|
|
|
|
"completion",
|
|
|
|
"nushell"
|
|
|
|
]
|
|
|
|
exclude = [ "tests/*" ]
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { version = "4.0", default-features = false }
|
|
|
|
clap_complete = "4.0"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
snapbox = { version = "0.4", features = ["diff"] }
|