From fd0c4898a9efdc2e096d54469c7f38463f028e1c Mon Sep 17 00:00:00 2001 From: Ivan L Date: Mon, 16 Feb 2026 14:58:12 +0400 Subject: [PATCH] impl_proptest: use `core` instead of `std` --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index dc44a4d..3406a6a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2921,7 +2921,7 @@ mod impl_proptest { use proptest::arbitrary::{Arbitrary, StrategyFor}; use proptest::num::{f32, f64}; use proptest::strategy::{FilterMap, Map, Strategy}; - use std::convert::TryFrom; + use core::convert::TryFrom; macro_rules! impl_arbitrary { ($($f:ident),+) => {