Rust bindings to the Arb library.
Arb is a C library for rigorous real and complex arithmetic with arbitrary precision.
This crate requires the Arb library to be installed:
flint-arb
, in which case you will need to edit the
build.rs
line println!("cargo:rustc-link-lib=arb");
to
println!("cargo:rustc-link-lib=flint-arb");
(thanks to Christophe Troestler for pointing this
out).