2022-10-22 15:27:04 +00:00
|
|
|
[package]
|
|
|
|
name = "clap_complete_nushell"
|
2024-02-16 22:33:14 +00:00
|
|
|
version = "4.5.1"
|
2022-10-22 15:27:04 +00:00
|
|
|
description = "A generator library used with clap for Nushell completion scripts"
|
2023-05-23 13:50:43 +00:00
|
|
|
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_nushell"
|
2022-10-22 15:27:04 +00:00
|
|
|
categories = ["command-line-interface"]
|
|
|
|
keywords = [
|
|
|
|
"clap",
|
|
|
|
"cli",
|
|
|
|
"completion",
|
|
|
|
"nushell"
|
|
|
|
]
|
2023-05-23 13:50:43 +00:00
|
|
|
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},
|
2022-11-04 11:41:23 +00:00
|
|
|
]
|
2022-10-22 15:27:04 +00:00
|
|
|
|
2023-05-23 13:50:43 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
2022-10-22 15:27:04 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-05-23 13:50:43 +00:00
|
|
|
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std"] }
|
|
|
|
clap_complete = { path = "../clap_complete", version = "4.0.0" }
|
2022-10-22 15:27:04 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-01 00:16:52 +00:00
|
|
|
snapbox = { version = "0.5.7", features = ["diff", "examples", "path"] }
|
2023-05-23 13:50:43 +00:00
|
|
|
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }
|
2024-01-15 18:20:57 +00:00
|
|
|
completest = "0.4.0"
|
|
|
|
completest-nu = "0.4.0"
|