[package]
edition = "2024"
name = "immargs"
version = "0.1.4"
authors = ["Per Liden <per@malloc.se>"]
build = false
include = [
"README.md",
"CHANGELOG.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"src",
"tests",
"examples",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "No-hassle, on-the-spot, command line argument parser"
homepage = "https://github.com/pliden/immargs"
readme = "README.md"
keywords = [
"args",
"arguments",
"cli",
"command-line",
"parser",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pliden/immargs"
[lib]
name = "immargs"
path = "src/lib.rs"
[[example]]
name = "git-immargs"
path = "examples/git-immargs.rs"
[[example]]
name = "git-immargs_from_env"
path = "examples/git-immargs_from_env.rs"
[[example]]
name = "ls-immargs"
path = "examples/ls-immargs.rs"
[[example]]
name = "ls-immargs_from_env"
path = "examples/ls-immargs_from_env.rs"
[[example]]
name = "mv-immargs"
path = "examples/mv-immargs.rs"
[[example]]
name = "mv-immargs_from_env"
path = "examples/mv-immargs_from_env.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "macro"
path = "tests/macro.rs"
[[test]]
name = "non_option"
path = "tests/non_option.rs"
[[test]]
name = "option"
path = "tests/option.rs"
[[test]]
name = "type"
path = "tests/type.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[dependencies.immargs_macros]
version = "0.1.4"
[dev-dependencies.indoc]
version = "2"