diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /third_party/rust/clap_builder/Cargo.toml | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/clap_builder/Cargo.toml')
-rw-r--r-- | third_party/rust/clap_builder/Cargo.toml | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/third_party/rust/clap_builder/Cargo.toml b/third_party/rust/clap_builder/Cargo.toml new file mode 100644 index 0000000000..5c7bd98b29 --- /dev/null +++ b/third_party/rust/clap_builder/Cargo.toml @@ -0,0 +1,163 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies. +# +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. + +[package] +edition = "2021" +rust-version = "1.70.0" +name = "clap_builder" +version = "4.4.5" +include = [ + "build.rs", + "src/**/*", + "Cargo.toml", + "LICENSE*", + "README.md", + "benches/**/*", + "examples/**/*", +] +description = "A simple to use, efficient, and full-featured Command Line Argument Parser" +readme = "README.md" +keywords = [ + "argument", + "cli", + "arg", + "parser", + "parse", +] +categories = ["command-line-interface"] +license = "MIT OR Apache-2.0" +repository = "https://github.com/clap-rs/clap" + +[package.metadata.docs.rs] +cargo-args = [ + "-Zunstable-options", + "-Zrustdoc-scrape-examples", +] +features = ["unstable-doc"] +rustdoc-args = [ + "--cfg", + "docsrs", +] + +[package.metadata.playground] +features = ["unstable-doc"] + +[package.metadata.release] +dependent-version = "upgrade" +shared-version = true +tag-name = "v{{version}}" + +[lib] +bench = false + +[dependencies.anstream] +version = "0.5.0" +optional = true + +[dependencies.anstyle] +version = "1.0.0" + +[dependencies.backtrace] +version = "0.3.67" +optional = true + +[dependencies.clap_lex] +version = "0.5.0" + +[dependencies.strsim] +version = "0.10.0" +optional = true + +[dependencies.terminal_size] +version = "0.3.0" +optional = true + +[dependencies.unicase] +version = "2.6.0" +optional = true + +[dependencies.unicode-width] +version = "0.1.9" +optional = true + +[dev-dependencies.color-print] +version = "0.3.4" + +[dev-dependencies.humantime] +version = "2.1.0" + +[dev-dependencies.rustversion] +version = "1.0.14" + +[dev-dependencies.shlex] +version = "1.1.0" + +[dev-dependencies.snapbox] +version = "0.4.12" + +[dev-dependencies.static_assertions] +version = "1.1.0" + +[dev-dependencies.trybuild] +version = "1.0.83" + +[dev-dependencies.trycmd] +version = "0.14.17" +features = [ + "color-auto", + "diff", + "examples", +] +default-features = false + +[dev-dependencies.unic-emoji-char] +version = "0.9.0" + +[features] +cargo = [] +color = ["dep:anstream"] +debug = ["dep:backtrace"] +default = [ + "std", + "color", + "help", + "usage", + "error-context", + "suggestions", +] +deprecated = [] +env = [] +error-context = [] +help = [] +std = ["anstyle/std"] +string = [] +suggestions = [ + "dep:strsim", + "error-context", +] +unicode = [ + "dep:unicode-width", + "dep:unicase", +] +unstable-doc = [ + "cargo", + "wrap_help", + "env", + "unicode", + "string", +] +unstable-styles = ["color"] +unstable-v5 = ["deprecated"] +usage = [] +wrap_help = [ + "help", + "dep:terminal_size", +] |