mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
30 lines
762 B
TOML
30 lines
762 B
TOML
[package]
|
|
name = "clap_complete_nushell"
|
|
authors = [ "nibon7 <nibon7@163.com>" ]
|
|
version = "0.1.9"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "A generator library used with clap for Nushell completion scripts"
|
|
homepage = "https://github.com/nibon7/clap_complete_nushell"
|
|
repository = "https://github.com/nibon7/clap_complete_nushell"
|
|
readme = "./README.md"
|
|
categories = ["command-line-interface"]
|
|
keywords = [
|
|
"clap",
|
|
"cli",
|
|
"completion",
|
|
"nushell"
|
|
]
|
|
exclude = [
|
|
"tests/*",
|
|
"scripts/*"
|
|
]
|
|
|
|
# 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"] }
|