cargo : clap_builder @ 4.6.0
Cargo.toml.orig
78 lines · plain
[package]name = "clap_builder"version = "4.6.0"description = "A simple to use, efficient, and full-featured Command Line Argument Parser"categories = ["command-line-interface"]keywords = [ "argument", "cli", "arg", "parser", "parse"]repository.workspace = truelicense.workspace = trueedition.workspace = truerust-version.workspace = trueinclude.workspace = true[package.metadata.docs.rs]features = ["unstable-doc"]rustdoc-args = ["--generate-link-to-definition"][package.metadata.playground]features = ["unstable-doc"][package.metadata.release]shared-version = truedependent-version = "upgrade"tag-name = "v{{version}}"[features]default = ["std", "color", "help", "usage", "error-context", "suggestions"]debug = ["dep:backtrace"] # Enables debug messagesunstable-doc = ["cargo", "wrap_help", "env", "unicode", "string", "unstable-ext"] # for docs.rs# Used in defaultstd = ["anstyle/std"] # support for no_std in a backwards-compatible waycolor = ["dep:anstream"]help = []usage = []error-context = []suggestions = ["dep:strsim", "error-context"]# Optionaldeprecated = [] # Guided experience to prepare for next breaking release (at different stages of development, this may become default)cargo = [] # Disable if you're not using Cargo, enables Cargo-env-var-dependent macroswrap_help = ["help", "dep:terminal_size"]env = [] # Use environment variables during arg parsingunicode = ["dep:unicode-width", "dep:unicase"] # Support for unicode characters in arguments and help messagesstring = [] # Allow runtime generated strings# In-work featuresunstable-v5 = ["deprecated"]unstable-ext = []unstable-styles = ["color"] # deprecated[lib]bench = false[dependencies]clap_lex = { path = "../clap_lex", version = "1.0.0" }unicase = { version = "2.9.0", optional = true }strsim = { version = "0.11.1", optional = true }anstream = { version = "1.0.0", optional = true }anstyle = "1.0.13"terminal_size = { version = "0.4.3", optional = true }backtrace = { version = "0.3.76", optional = true }unicode-width = { version = "0.2.2", optional = true }[dev-dependencies]static_assertions = "1.1.0"unic-emoji-char = "0.9.0"color-print = "0.3.7"snapbox = { version = "1.1.0" }[lints]workspace = true