[[bench]]
harness = false
name = "hostlist_n"
path = "benches/hostlist_n.rs"
[[bin]]
name = "hostlist_iter"
path = "src/bin/hostlist_iter.rs"
required-features = ["cli"]
[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5"
[dependencies.derive_more]
features = ["from", "display"]
version = "2.0"
[dependencies.pest]
version = "2.8"
[dependencies.pest_derive]
version = "2.8"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[features]
cli = ["clap"]
[lib]
name = "hostlist_iter"
path = "src/lib.rs"
[lints.clippy.pedantic]
level = "warn"
priority = 0
[package]
authors = ["Marcus Epperson <marcus.r.epperson@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-interface", "command-line-utilities"]
description = "A hostlist handling library"
edition = "2024"
keywords = ["hostlist", "nodeset", "cluster", "hpc"]
license = "MIT OR Apache-2.0"
name = "hostlist_iter"
readme = "README.md"
repository = "https://github.com/mrepper/hostlist_iter"
version = "0.1.0"
[profile.release]
codegen-units = 1
incremental = false
lto = true
panic = "abort"
strip = "debuginfo"