[package]
rust-version = "1.26.0"
name = "command-ifyer"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command line parser"
readme = "README"
keywords = ["ifyer"]
categories = [
"command-line-interface",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/Velocifyer/command-ifyer"
[lib]
name = "command_ifyer"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
collapsible_if = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
needless_range_loop = "allow"
needless_return = "allow"
redundant_else = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"