diff --git a/idevice/Cargo.toml b/idevice/Cargo.toml index 4bc9e99..eddb41b 100644 --- a/idevice/Cargo.toml +++ b/idevice/Cargo.toml @@ -14,6 +14,7 @@ keywords = ["lockdownd", "ios"] tokio = { version = "1.43", features = ["io-util", "macros", "time"] } tokio-openssl = { version = "0.6" } openssl = { version = "0.10" } +openssl-sys = { version = "0.9", optional = true } plist = { version = "1.7" } serde = { version = "1", features = ["derive"] } @@ -53,3 +54,6 @@ full = [ "usbmuxd", "xpc", ] + +[target.'cfg(target_os = "windows")'.features] +default = ["dep:openssl-sys", "openssl-sys/vendored"]