aopt-core 1.0.3

A flexible and typed getopt tools
Documentation
[package]

name = "aopt-core"

version = "1.0.3"

authors = [

    "araraloren <blackcatoverwall@gmail.com>",

]

edition = "2021"

license = "MPL-2.0"

description = "A flexible and typed getopt tools"

repository = "https://github.com/araraloren/aopt/"

keywords = ["getopt", "cli"]

categories = ["command-line-interface"]

readme = "README.md"



# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



[dependencies]

ahash.workspace = true

neure.workspace = true

serde = { workspace = true, optional = true }

tracing = { workspace = true, optional = true }



[features]

default = []

sync = []

log = ["tracing"]

serde = ["serde/derive"]



[package.metadata.docs.rs]

all-features = true

rustdoc-args = [

    "--cfg",

    "docsrs",

    "--generate-link-to-definition",

]