# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "aopt" version = "0.16.1" authors = ["araraloren "] build = false autolib = false autobins = false autoexamples = false autotests = false autobenches = false description = "A flexible and typed getopt tools" readme = "README.md" keywords = [ "getopt", "cli", ] categories = ["command-line-interface"] license = "MPL-2.0" repository = "https://github.com/araraloren/aopt/" [package.metadata.docs.rs] all-features = true cargo-args = [ "-Zunstable-options", "-Zrustdoc-scrape-examples", ] [lib] name = "aopt" path = "src/lib.rs" [[example]] name = "01_prefix_option" path = "examples/01_prefix_option.rs" [[example]] name = "02_option_value" path = "examples/02_option_value.rs" [[example]] name = "03_combination_style" path = "examples/03_combination_style.rs" [[example]] name = "04_positional" path = "examples/04_positional.rs" [[example]] name = "05_overload" path = "examples/05_overload.rs" [[example]] name = "06_callback" path = "examples/06_callback.rs" [dependencies.ahash] version = "0.8" [dependencies.neure] version = "0.6" [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.tracing] version = "0.1" optional = true [features] default = [] log = ["tracing"] serde = ["serde/derive"] shell = [] sync = []