1[package]
2name = "strict-num"
3version = "0.1.1"
4authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
5license = "MIT"
6description = "A collection of bounded numeric types"
7repository = "https://github.com/RazrFalcon/strict-num"
8documentation = "https://docs.rs/strict-num/"
9categories = ["mathematics", "no-std"]
10readme = "README.md"
11edition = "2018"
12
13[dependencies]
14float-cmp = { version = "0.9", default-features = false, features = ["std"], optional = true }
15
16[features]
17default = ["approx-eq"]
18
19# Implements `ApproxEq` and `ApproxEqUlps` traits for floating point numbers
20# via the `float-cmp` crate.
21# Disables `no_std`.
22approx-eq = ["float-cmp"]
23