Skip to content

Commit d5f29f2

Browse files
committed
Bump idevice
1 parent 71b21fe commit d5f29f2

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

Cargo.lock

Lines changed: 13 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ futures-util = { version = "0.3.21" }
2222
zeroconf = { git = "https://github.com/zeyugao/zeroconf-rs", optional = true }
2323
mdns = "3.0.0"
2424

25-
idevice = "0.1.7"
25+
idevice = { version = "0.1.21", features = ["usbmuxd", "heartbeat"] }
2626
plist = "1.7"
2727

2828
log = { version = "0.4.16" }

src/heartbeat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub async fn heartbeat(
2020
let pls_stop = Arc::new(Mutex::new(false));
2121
let pls_stop_clone = pls_stop.clone();
2222

23-
let socket = SocketAddr::new(ip_addr, idevice::lockdownd::LOCKDOWND_PORT);
23+
let socket = SocketAddr::new(ip_addr, LockdowndClient::LOCKDOWND_PORT);
2424

2525
let socket = tokio::net::TcpStream::connect(socket).await?;
2626
let socket = Box::new(socket);

0 commit comments

Comments
 (0)