mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 06:26:15 +01:00
Change to tokio for io
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.5"
|
||||
version = "0.1.6"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
documentation = "https://docs.rs/idevice"
|
||||
@@ -12,6 +12,7 @@ keywords = ["lockdownd", "ios"]
|
||||
[[bin]]
|
||||
name = "ideviceinfo"
|
||||
path = "src/tools/ideviceinfo.rs"
|
||||
required-features = ["bin"]
|
||||
|
||||
[[bin]]
|
||||
name = "heartbeat_client"
|
||||
@@ -27,6 +28,8 @@ path = "src/tools/mounter.rs"
|
||||
required-features = ["sha2", "ureq"]
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.43", features = ["io-util"] }
|
||||
tokio-openssl = { version = "0.6" }
|
||||
plist = { version = "1.7" }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
thiserror = { version = "2" }
|
||||
@@ -39,4 +42,4 @@ sha2 = { version = "0.10", optional = true }
|
||||
ureq = { version = "2.12", optional = true }
|
||||
|
||||
[features]
|
||||
std-tcp = []
|
||||
bin = ["tokio/full", "sha2", "ureq"]
|
||||
|
||||
Reference in New Issue
Block a user