mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 14:36:16 +01:00
Don't double import IPv4Addr on Windows
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user