[package]
edition = "2024"
name = "arithmetic-nonmax"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Integer types that cannot be the maximum value, allowing for memory layout optimization and intuitive arithmetic operations."
readme = "README.md"
keywords = [
"nonmax",
"optimization",
"niche",
"integer",
"arithmetic",
]
categories = [
"data-structures",
"no-std",
"embedded",
]
license = "CC0-1.0"
repository = "https://github.com/northward1/arithmetic-nonmax"
[lib]
name = "arithmetic_nonmax"
path = "src/lib.rs"
[[example]]
name = "dijkstra"
path = "examples/dijkstra.rs"
[[example]]
name = "floyd_warshall"
path = "examples/floyd_warshall.rs"
[[example]]
name = "union_find"
path = "examples/union_find.rs"
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
harness = false
[dev-dependencies.divan]
version = "0.1.21"
[dev-dependencies.rand]
version = "0.9.2"