Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//! `main` is just a wrapper to handle configuration.
#[cfg(not(feature = "build-mpfr"))]
fn main() {
eprintln!("multiprecision not enabled; skipping extensive tests");
}
#[cfg(feature = "build-mpfr")]
mod run;
run::run();