[package]
edition = "2024"
name = "non-zero"
version = "0.2.0"
authors = ["SLUCHABLUB"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A macro for creating constant non-zero integers (with type inference)."
readme = "README.md"
keywords = [
"non-zero",
"nonzero",
]
categories = [
"rust-patterns",
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SLUCHABLUB/non-zero"
[lib]
name = "non_zero"
path = "src/lib.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[[test]]
name = "ui_should_panic"
path = "tests/ui_should_panic.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dev-dependencies.trybuild]
version = "1.0"