[package]
name = "num-order"
version = "0.1.1"
edition = "2018"
license = "Apache-2.0"
description = "Numerically consistent `Eq`, `Ord` and `Hash` implementations for various `num` types (`u32`, `f64`, `num_bigint::BigInt`, etc.)"
repository = "https://github.com/cmpute/num-order"
keywords = ["numeric", "comparison", "hash", "order"]
categories = ["mathematics", "science", "algorithms"]
documentation = "https://docs.rs/num-order"
readme = "README.md"
[dependencies]
libm = { version = "0.2.0", optional = true }
num-traits = "0.2.14"
num-modular = "0.1.0"
num-bigint = { version = "0.4.0", optional = true }
[features]
default = ['libm']
std = []