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