1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#[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 = "serde")]
pub extern crate serde;
#[cfg(all(
  feature = "wasm-bindgen1",
  target_arch = "wasm32",
  target_os = "unknown"
))]
pub use wasm_bindgen;