Don't double import IPv4Addr on Windows

This commit is contained in:
Jackson Coxson
2025-01-29 14:08:26 -07:00
parent d57ce5b222
commit cc6adc0b51
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
name = "idevice"
description = "A Rust library to interact with services on iOS devices."
authors = ["Jackson Coxson"]
version = "0.1.12"
version = "0.1.14"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/idevice"

View File

@@ -3,7 +3,7 @@
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
#[cfg(target_os = "windows")]
use std::net::{Ipv4Addr, SocketAddrV4};
use std::net::SocketAddrV4;
use log::debug;
use serde::Deserialize;