Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
rushmorem committed Jan 21, 2022
1 parent 19e2b94 commit 764735a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/de.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use addr::{SocketAddr, SocketAddrV4, SocketAddrV6};
use crate::addr::{SocketAddr, SocketAddrV4, SocketAddrV6};
use core::{fmt, str};
use ip::{IpAddr, Ipv4Addr, Ipv6Addr};
use crate::ip::{IpAddr, Ipv4Addr, Ipv6Addr};
use serde::de::{Deserialize, Deserializer, EnumAccess, Error, Unexpected, VariantAccess, Visitor};

macro_rules! variant_identifier {
Expand Down
4 changes: 2 additions & 2 deletions src/ser.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use serde::ser::{Error, Serialize, Serializer};

use addr::{SocketAddr, SocketAddrV4, SocketAddrV6};
use ip::{IpAddr, Ipv4Addr, Ipv6Addr};
use crate::addr::{SocketAddr, SocketAddrV4, SocketAddrV6};
use crate::ip::{IpAddr, Ipv4Addr, Ipv6Addr};

use core::fmt::{self, write, Write};

Expand Down

0 comments on commit 764735a

Please sign in to comment.