[package]
name = "nonmaxunsigned"
version = "2.0.0"
edition = "2024"
authors = ["Burkhard Mittelbach <burkhard@mittelbach-online.de>"]
description = "A NonMax integer implementation not relying on NonZero"
repository = "https://github.com/Wasabi375/nonmaxunsigned"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["nonmax", "non-max", "niche", "option", "no-std"]
rust-version = "1.88"
[features]
default = ["checked-ops"]
checked-ops = []
endian-conversion = []
[dev-dependencies]
strum = "0.27.1"
strum_macros = "0.27.1"
syn = "2.0.104"
proc-macro2 = "1.0.95"
quote = "1.0.40"
[package.metadata.docs.rs]
all-features = true
[package.metadata.release]
allow-branch = ["main"]
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}"},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/wasabi375/nonmaxunsigned/compare/{{tag_name}}...HEAD", exactly=1},
]