diff --git a/idevice/Cargo.toml b/idevice/Cargo.toml index dad6dd4..e67c5b8 100644 --- a/idevice/Cargo.toml +++ b/idevice/Cargo.toml @@ -54,9 +54,9 @@ debug_proxy = [] dvt = ["dep:byteorder", "dep:ns-keyed-archive"] heartbeat = ["tokio/macros", "tokio/time"] installation_proxy = [] -sbservices = [] +springboardservices = [] misagent = [] -mounter = ["dep:sha2"] +mobile_image_mounter = ["dep:sha2"] location_simulation = [] tcp = ["tokio/net"] tunnel_tcp_stack = ["dep:rand", "dep:futures", "tokio/fs"] @@ -79,7 +79,7 @@ full = [ "heartbeat", "installation_proxy", "misagent", - "mounter", + "mobile_image_mounter", "usbmuxd", "xpc", "location_simulation", @@ -87,5 +87,5 @@ full = [ "tunnel_tcp_stack", "tss", "tunneld", - "sbservices", + "springboardservices", ] diff --git a/idevice/src/lib.rs b/idevice/src/lib.rs index fdde38e..c49157c 100644 --- a/idevice/src/lib.rs +++ b/idevice/src/lib.rs @@ -17,12 +17,12 @@ pub mod installation_proxy; pub mod lockdown; #[cfg(feature = "misagent")] pub mod misagent; -#[cfg(feature = "mounter")] +#[cfg(feature = "mobile_image_mounter")] pub mod mobile_image_mounter; pub mod pairing_file; pub mod provider; mod sni; -#[cfg(feature = "sbservices")] +#[cfg(feature = "springboardservices")] pub mod springboardservices; #[cfg(feature = "tunnel_tcp_stack")] pub mod tcp;