| 1 | [package] |
| 2 | name = "getopts" |
| 3 | version = "0.2.24" |
| 4 | authors = ["The Rust Project Developers" ] |
| 5 | license = "MIT OR Apache-2.0" |
| 6 | repository = "https://github.com/rust-lang/getopts" |
| 7 | description = "getopts-like option parsing" |
| 8 | categories = ["command-line-interface" ] |
| 9 | edition = "2021" |
| 10 | rust-version = "1.66" |
| 11 | |
| 12 | [dependencies] |
| 13 | unicode-width = { version = "0.2.0" , optional = true } |
| 14 | std = { version = "1.0" , package = "rustc-std-workspace-std" , optional = true } |
| 15 | core = { version = "1.0" , package = "rustc-std-workspace-core" , optional = true } |
| 16 | |
| 17 | [dev-dependencies] |
| 18 | log = "0.4" |
| 19 | |
| 20 | [features] |
| 21 | default = ["unicode" ] |
| 22 | rustc-dep-of-std = ["std" , "core" ] |
| 23 | unicode = ["dep:unicode-width" ] |
| 24 | |