[package]
edition = "2024"
name = "lim"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A generic bounded value type for Rust featuring safe clamping, exclusive/inclusive bounds, and thiserror integration."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Underline-1024/lim"
[lib]
name = "lim"
path = "src/lib.rs"
[[test]]
name = "boundaries"
path = "tests/boundaries.rs"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.19"