1cfg_if! { 2 if #[cfg(test)] { 3 extern crate quickcheck; 4 } else if #[cfg(feature = "property-test-api")] { 5 extern crate quickcheck; 6 } 7} 8 9pub mod abor; 10pub mod mempack; 11pub mod packer; 12pub mod property;