The rug
crate provides integers and floating-point numbers with
arbitrary precision and correct rounding. Its main features are:
This crate is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. See the full text of the GNU LGPL and GNU GPL for details.
Documentation for this crate is available. This crate depends
on the low-level bindings in the gmp-mpfr-sys
crate, which
provides Rust FFI bindings for:
It can be helpful to refer to the documentation of the GMP, MPFR and MPC libraries.
```rust extern crate rug; use rug::{Assign, Integer};
fn main() { // Create an integer initialized as zero. let mut int = Integer::new(); asserteq!(int, 0); int.assign(14); asserteq!(int, 14); let hex160 = "ffff0000ffff0000ffff0000ffff0000ffff0000"; int.assignstrradix(hex160, 16).unwrap(); asserteq!(int.significantbits(), 160); int = (int >> 128) - 1; asserteq!(int, 0xfffeffff_u32); } ```
To use rug
in your crate, add extern crate rug;
to the crate root
and add rug
as a dependency in Cargo.toml
:
toml
[dependencies]
rug = "0.9.1"
The rug
crate depends on the low-level bindings in the
gmp-mpfr-sys
crate. This should be transparent on GNU/Linux
and macOS, but may need some work on Windows. See the
gmp-mpfr-sys
documentation for some details.
The rug
crate has six optional features:
integer
, enabled by default.rational
, enabled by default. This feature requires the integer
feature.float
, enabled by default.complex
, enabled by default. This feature requires the float
feature.rand
, enabled by default. This feature requires the integer
feature.serde
, disabled by default. This provides serialization support
for the Integer
, Rational
, Float
and Complex
types,
providing that they are enabled.The first five optional features are enabled by default; to disable
them add this to Cargo.toml
:
toml
[dependencies.rug]
version = "0.9.1"
default-features = false
If none of the first five optional features are selected, the
gmp-mpfr-sys
crate is not required and thus not enabled.
To use features selectively, you can add this to Cargo.toml
:
```toml [dependencies.rug] version = "0.9.1" default-features = false
features = ["integer", "float", "rand"] ```