[package] name = "real_float" version = "0.3.0" edition = "2021" description = "Floating point types that check for correctness and implement total ordering" repository = "https://github.com/JoJoJet/real_float" license = "MIT OR Apache-2.0" keywords = ["math", "float", "compare", "NaN", "panic"] categories = ["mathematics"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] num-traits = { version = "0.2", optional = true } [features] num = ["dep:num-traits"] strict = []