Skip to content

Commit

Permalink
fixed some import errors (again...)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptistemontan committed Jul 31, 2023
1 parent 1fdd86c commit 5671c6b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions serde/src/private/de.rs
@@ -1,12 +1,13 @@
use crate::lib::*;

use crate::de::value::{BorrowedBytesDeserializer, BytesDeserializer};
use crate::de::{Deserialize, Deserializer, Error, IntoDeserializer, Visitor};

use crate::de::{DeserializeSeed, EnumAccess};
use crate::de::{
Deserialize, DeserializeSeed, Deserializer, EnumAccess, Error, IntoDeserializer, VariantAccess,
Visitor,
};

#[cfg(any(feature = "std", feature = "alloc"))]
use crate::de::{MapAccess, Unexpected, VariantAccess};
use crate::de::{MapAccess, Unexpected};

#[cfg(any(feature = "std", feature = "alloc"))]
pub use self::content::{
Expand Down

0 comments on commit 5671c6b

Please sign in to comment.