[package] name = "ramp" description = "A high-performance multiple-precision arithmetic library" version = "0.7.0" authors = ["James Miller ", "Michael Rosenberg "] build = "build.rs" license = "Apache-2.0" readme = "README.md" keywords = ["bignum","math","number"] repository = "https://github.com/Aatch/ramp" documentation = "https://docs.rs/ramp" [lib] name = "ramp" path = "src/lib.rs" [features] unstable = [] # To keep travis-cargo happy fallbacks = [] asm = [] full-quickcheck = [] [dependencies] ieee754 = "0.2" rand = "0.8" hamming = "0.1" num-traits = "0.2" num-integer = "0.1" rust-gmp = { version = "0.5", optional = true } [build-dependencies] num-bigint = "0.4" rustc-cfg = "0.4" cc = "1.0" [dev-dependencies] num-bigint = "0.4" quickcheck = "0.6"