1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![allow(clippy::bool_comparison, clippy::type_complexity)]
#![cfg_attr(not(feature = "std"), no_std)]
#![deny(missing_debug_implementations)]

mod solver;
mod trait_cfg;
pub mod utils;

pub use crate::{solver::Solver, trait_cfg::TraitCfg};
#[cfg(feature = "num-traits")]
pub extern crate num_traits;
#[cfg(all(feature = "quickcheck", feature = "std"))]
pub extern crate quickcheck;
#[cfg(feature = "rand")]
pub extern crate rand;
#[cfg(all(feature = "rayon", feature = "std"))]
pub extern crate rayon;
#[cfg(feature = "serde1")]
pub extern crate serde;
#[cfg(feature = "serde1")]
pub extern crate serde_derive;
#[cfg(all(
    feature = "wasm-bindgen1",
    target_arch = "wasm32",
    target_os = "unknown"
))]
pub use wasm_bindgen;