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"] dvt = ["dep:byteorder", "dep:ns-keyed-archive"]
heartbeat = ["tokio/macros", "tokio/time"] heartbeat = ["tokio/macros", "tokio/time"]
installation_proxy = [] installation_proxy = []
sbservices = [] springboardservices = []
misagent = [] misagent = []
mounter = ["dep:sha2"] mobile_image_mounter = ["dep:sha2"]
location_simulation = [] location_simulation = []
tcp = ["tokio/net"] tcp = ["tokio/net"]
tunnel_tcp_stack = ["dep:rand", "dep:futures", "tokio/fs"] tunnel_tcp_stack = ["dep:rand", "dep:futures", "tokio/fs"]
@@ -79,7 +79,7 @@ full = [
"heartbeat", "heartbeat",
"installation_proxy", "installation_proxy",
"misagent", "misagent",
"mounter", "mobile_image_mounter",
"usbmuxd", "usbmuxd",
"xpc", "xpc",
"location_simulation", "location_simulation",
@@ -87,5 +87,5 @@ full = [
"tunnel_tcp_stack", "tunnel_tcp_stack",
"tss", "tss",
"tunneld", "tunneld",
"sbservices", "springboardservices",
] ]

View File

@@ -17,12 +17,12 @@ pub mod installation_proxy;
pub mod lockdown; pub mod lockdown;
#[cfg(feature = "misagent")] #[cfg(feature = "misagent")]
pub mod misagent; pub mod misagent;
#[cfg(feature = "mounter")] #[cfg(feature = "mobile_image_mounter")]
pub mod mobile_image_mounter; pub mod mobile_image_mounter;
pub mod pairing_file; pub mod pairing_file;
pub mod provider; pub mod provider;
mod sni; mod sni;
#[cfg(feature = "sbservices")] #[cfg(feature = "springboardservices")]
pub mod springboardservices; pub mod springboardservices;
#[cfg(feature = "tunnel_tcp_stack")] #[cfg(feature = "tunnel_tcp_stack")]
pub mod tcp; pub mod tcp;