diff --git a/serde/src/de/value.rs b/serde/src/de/value.rs index 14955a55..dd3dfa7e 100644 --- a/serde/src/de/value.rs +++ b/serde/src/de/value.rs @@ -28,6 +28,10 @@ use collections::{ }; #[cfg(all(feature = "collections", not(feature = "std")))] use collections::borrow::Cow; +#[cfg(all(feature = "collections", not(feature = "std")))] +use collections::boxed::Box; +#[cfg(all(feature = "collections", not(feature = "std")))] +use collections::string::ToString; #[cfg(all(feature = "unstable", feature = "collections"))] use collections::borrow::ToOwned;