clap/clap_complete_fig/Cargo.toml

48 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "clap_complete_fig"
2022-11-24 17:40:15 +00:00
version = "4.0.2"
description = "A generator library used with clap for Fig completion scripts"
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_fig"
2022-05-18 15:33:37 +00:00
categories = ["command-line-interface"]
keywords = [
2022-05-18 15:33:37 +00:00
"clap",
"cli",
"completion",
"fig",
]
license = "MIT OR Apache-2.0"
2022-05-18 15:35:30 +00:00
edition = "2021"
2023-01-09 18:29:41 +00:00
rust-version = "1.64.0" # MSRV
2022-05-18 15:33:37 +00:00
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
2022-01-12 17:04:57 +00:00
[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]
2022-10-18 19:36:44 +00:00
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", features = ["diff"] }
2022-10-18 19:36:44 +00:00
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }