rust-gmp 0.5.0

Rust bindings for GMP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![crate_name = "gmp"]

#![warn(deprecated)]
#![allow(non_camel_case_types)]

extern crate libc;
extern crate num_traits;

mod ffi;
pub mod mpz;
pub mod mpq;
pub mod mpf;
pub mod rand;
pub mod sign;

#[cfg(test)]
mod test;