[package]
edition = "2021"
rust-version = "1.64"
name = "getopt-iter"
version = "1.0.1"
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A POSIX style getopt parser for Rust"
homepage = "https://github.com/ogital-net/getopt-rs"
documentation = "https://docs.rs/getopt-iter"
readme = "README.md"
keywords = [
"getopt",
"posix",
"argv",
"cli",
"no_std",
]
categories = [
"command-line-interface",
"no-std",
"parser-implementations",
]
license = "BSD-2-Clause"
repository = "https://github.com/ogital-net/getopt-rs"
[features]
default = ["std"]
std = []
[lib]
name = "getopt_iter"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.getargs]
version = "0.5"
[dev-dependencies.getopts]
version = "0.2"