aopt 1.4.5

A flexible and typed getopt tools
Documentation
# 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 = "1.4.5"
authors = ["araraloren <blackcatoverwall@gmail.com>"]
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",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
    "--generate-link-to-definition",
]

[features]
default = []
log = [
    "tracing",
    "aopt-core/log",
    "aopt-shell?/log",
]
serde = [
    "serde/derive",
    "aopt-core/serde",
    "aopt-shell?/serde",
]
shell = ["aopt-shell"]
sync = [
    "aopt-core/sync",
    "aopt-shell?/sync",
]

[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"

[[example]]
name = "07_callback"
path = "examples/07_callback.rs"

[dependencies.aopt-core]
version = "1.0"

[dependencies.aopt-shell]
version = "0.3"
optional = true

[dependencies.neure]
version = "0.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.tracing]
version = "0.1"
optional = true