percli_core/percolator/mod.rs
1// Vendored from https://github.com/aeyakovenko/percolator
2// License: Apache-2.0
3// Commit: 2430112e (upstream HEAD at time of vendoring)
4//
5// This is the unmodified Percolator risk engine source, vendored here
6// because the upstream crate is not published on crates.io.
7
8#[allow(unused, clippy::all, non_camel_case_types)]
9#[path = "i128.rs"]
10pub mod i128_types;
11pub use i128_types::{I128, U128};
12
13#[allow(unused, clippy::all)]
14pub mod wide_math;
15
16#[allow(unused, clippy::all)]
17mod engine;
18pub use engine::*;