Rename features to match mods

This commit is contained in:
Jackson Coxson
2025-04-05 14:37:52 -06:00
parent 47e9a9f6d0
commit dadf676135
2 changed files with 6 additions and 6 deletions

View File

@@ -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",
]

View File

@@ -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;