diff options
Diffstat (limited to '')
-rw-r--r-- | vendor/proptest/src/lib.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/vendor/proptest/src/lib.rs b/vendor/proptest/src/lib.rs index 818c32645..72b90ffbf 100644 --- a/vendor/proptest/src/lib.rs +++ b/vendor/proptest/src/lib.rs @@ -27,10 +27,6 @@ feature(allocator_api, try_trait_v2, generator_trait, never_type) )] #![cfg_attr(all(feature = "std", feature = "unstable"), feature(ip))] -#![cfg_attr( - all(feature = "alloc", not(feature = "std")), - feature(core_intrinsics) -)] #![cfg_attr(docsrs, feature(doc_cfg))] // std_facade is used in a few macros, so it needs to be public. @@ -90,6 +86,9 @@ pub mod test_runner; pub mod tuple; pub mod option; +#[cfg(feature = "std")] +#[cfg_attr(docsrs, doc(cfg(feature = "std")))] +pub mod path; pub mod result; pub mod sample; #[cfg(feature = "std")] |