[package]
edition = "2021"
rust-version = "1.81"
name = "numeric-range"
version = "0.1.1"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'Parse and format compact integer-range strings like "1,3-5,7" (page ranges, CPU sets, line selections). Bidirectional, zero-dependency, no_std.'
homepage = "https://github.com/trananhtung/numeric-range"
documentation = "https://docs.rs/numeric-range"
readme = "README.md"
keywords = [
"range",
"parse",
"ranges",
"page-range",
"cpuset",
]
categories = [
"parser-implementations",
"no-std",
"value-formatting",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/numeric-range"
[lib]
name = "numeric_range"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"