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