1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14rust-version = "1.74" 15name = "clap_builder" 16version = "4.5.0" 17include = [ 18 "build.rs", 19 "src/**/*", 20 "Cargo.toml", 21 "LICENSE*", 22 "README.md", 23 "benches/**/*", 24 "examples/**/*", 25] 26description = "A simple to use, efficient, and full-featured Command Line Argument Parser" 27readme = "README.md" 28keywords = [ 29 "argument", 30 "cli", 31 "arg", 32 "parser", 33 "parse", 34] 35categories = ["command-line-interface"] 36license = "MIT OR Apache-2.0" 37repository = "https://github.com/clap-rs/clap" 38 39[package.metadata.docs.rs] 40cargo-args = [ 41 "-Zunstable-options", 42 "-Zrustdoc-scrape-examples", 43] 44features = ["unstable-doc"] 45rustdoc-args = [ 46 "--cfg", 47 "docsrs", 48] 49 50[package.metadata.playground] 51features = ["unstable-doc"] 52 53[package.metadata.release] 54dependent-version = "upgrade" 55shared-version = true 56tag-name = "v{{version}}" 57 58[lib] 59bench = false 60 61[dependencies.anstream] 62version = "0.6.7" 63optional = true 64 65[dependencies.anstyle] 66version = "1.0.0" 67 68[dependencies.backtrace] 69version = "0.3.67" 70optional = true 71 72[dependencies.clap_lex] 73version = "0.7.0" 74 75[dependencies.strsim] 76version = "0.11.0" 77optional = true 78 79[dependencies.terminal_size] 80version = "0.3.0" 81optional = true 82 83[dependencies.unicase] 84version = "2.6.0" 85optional = true 86 87[dependencies.unicode-width] 88version = "0.1.9" 89optional = true 90 91[dev-dependencies.color-print] 92version = "0.3.5" 93 94[dev-dependencies.static_assertions] 95version = "1.1.0" 96 97[dev-dependencies.unic-emoji-char] 98version = "0.9.0" 99 100[features] 101cargo = [] 102color = ["dep:anstream"] 103debug = ["dep:backtrace"] 104default = [ 105 "std", 106 "color", 107 "help", 108 "usage", 109 "error-context", 110 "suggestions", 111] 112deprecated = [] 113env = [] 114error-context = [] 115help = [] 116std = ["anstyle/std"] 117string = [] 118suggestions = [ 119 "dep:strsim", 120 "error-context", 121] 122unicode = [ 123 "dep:unicode-width", 124 "dep:unicase", 125] 126unstable-doc = [ 127 "cargo", 128 "wrap_help", 129 "env", 130 "unicode", 131 "string", 132] 133unstable-styles = ["color"] 134unstable-v5 = ["deprecated"] 135usage = [] 136wrap_help = [ 137 "help", 138 "dep:terminal_size", 139] 140