| 1 | [package] |
| 2 | |
| 3 | name = "getopts" |
| 4 | version = "0.2.21" # don't forget to update html_root_url |
| 5 | authors = ["The Rust Project Developers" ] |
| 6 | license = "MIT/Apache-2.0" |
| 7 | readme = "README.md" |
| 8 | repository = "https://github.com/rust-lang/getopts" |
| 9 | documentation = "https://doc.rust-lang.org/getopts" |
| 10 | homepage = "https://github.com/rust-lang/getopts" |
| 11 | description = "" " |
| 12 | getopts-like option parsing. |
| 13 | " "" |
| 14 | categories = ["command-line-interface" ] |
| 15 | |
| 16 | [dependencies] |
| 17 | unicode-width = "0.1.5" |
| 18 | std = { version = "1.0" , package = "rustc-std-workspace-std" , optional = true } |
| 19 | core = { version = "1.0" , package = "rustc-std-workspace-core" , optional = true } |
| 20 | |
| 21 | [dev-dependencies] |
| 22 | log = "0.4" |
| 23 | |
| 24 | [features] |
| 25 | rustc-dep-of-std = ['unicode-width/rustc-dep-of-std' , 'std' , 'core' ] |
| 26 | |