mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
14fd853fb9
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
40 lines
1.5 KiB
TOML
40 lines
1.5 KiB
TOML
[package]
|
|
name = "clap_complete_nushell"
|
|
version = "4.4.2"
|
|
description = "A generator library used with clap for Nushell completion scripts"
|
|
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_nushell"
|
|
categories = ["command-line-interface"]
|
|
keywords = [
|
|
"clap",
|
|
"cli",
|
|
"completion",
|
|
"nushell"
|
|
]
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
include.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[package.metadata.release]
|
|
pre-release-replacements = [
|
|
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
|
|
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
|
|
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
|
|
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1},
|
|
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", exactly=1},
|
|
]
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std"] }
|
|
clap_complete = { path = "../clap_complete", version = "4.0.0" }
|
|
|
|
[dev-dependencies]
|
|
snapbox = { version = "0.4.14", features = ["diff", "examples", "path"] }
|
|
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }
|
|
completest = { version = "0.1.0", features = ["nu"] }
|