| 1 | #[cfg (feature = "std" )] |
| 2 | #[macro_use ] |
| 3 | extern crate lazy_static; |
| 4 | #[cfg (feature = "std" )] |
| 5 | extern crate regex; |
| 6 | #[cfg (feature = "std" )] |
| 7 | extern crate regex_automata; |
| 8 | #[cfg (feature = "std" )] |
| 9 | extern crate serde; |
| 10 | #[cfg (feature = "std" )] |
| 11 | extern crate serde_bytes; |
| 12 | #[cfg (feature = "std" )] |
| 13 | #[macro_use ] |
| 14 | extern crate serde_derive; |
| 15 | #[cfg (feature = "std" )] |
| 16 | extern crate toml; |
| 17 | |
| 18 | #[cfg (feature = "std" )] |
| 19 | mod collection; |
| 20 | #[cfg (feature = "std" )] |
| 21 | mod regression; |
| 22 | #[cfg (feature = "std" )] |
| 23 | mod suite; |
| 24 | #[cfg (feature = "std" )] |
| 25 | mod unescape; |
| 26 | |