bigdecimal/with_std.rs
1
2// Wrap std:: modules in namespace
3#[allow(unused_imports)]
4mod stdlib {
5
6 pub use std::{
7 cmp,
8 convert,
9 default,
10 fmt,
11 hash,
12 mem,
13 num,
14 ops,
15 iter,
16 slice,
17 str,
18 string,
19 f32,
20 f64,
21 };
22
23
24 #[cfg(test)]
25 pub use std::collections::hash_map::DefaultHasher;
26
27 pub use std::vec::Vec;
28 pub use std::borrow;
29}