[package]
edition = "2024"
rust-version = "1.85.1"
name = "satint"
version = "0.1.2"
build = false
exclude = [
".github/**",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Saturating integer scalar wrappers for no_std Rust"
documentation = "https://docs.rs/satint"
readme = "README.md"
keywords = [
"saturating",
"integer",
"arithmetic",
"scalar",
"no-std",
]
categories = [
"no-std",
"no-std::no-alloc",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Jmgr/satint"
resolver = "2"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "satint"
path = "src/lib.rs"
[[test]]
name = "operator_matrix"
path = "tests/operator_matrix.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.serde_test]
version = "1.0"