mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 14:36:16 +01:00
Refactor FFI bindings
This commit is contained in:
@@ -5,7 +5,7 @@ edition = "2024"
|
||||
|
||||
|
||||
[dependencies]
|
||||
idevice = { path = "../idevice", features = ["full"] }
|
||||
idevice = { path = "../idevice" }
|
||||
log = "0.4.26"
|
||||
simplelog = "0.12.2"
|
||||
once_cell = "1.21.1"
|
||||
@@ -14,6 +14,55 @@ libc = "0.2.171"
|
||||
plist = "1.7.1"
|
||||
plist_plus = { version = "0.2.6", features = ["dynamic"] }
|
||||
|
||||
[features]
|
||||
afc = ["idevice/afc"]
|
||||
amfi = ["idevice/amfi"]
|
||||
core_device_proxy = ["idevice/core_device_proxy"]
|
||||
crashreportcopymobile = ["idevice/crashreportcopymobile"]
|
||||
debug_proxy = ["idevice/debug_proxy"]
|
||||
dvt = ["idevice/dvt"]
|
||||
heartbeat = ["idevice/heartbeat"]
|
||||
house_arrest = ["idevice/house_arrest"]
|
||||
installation_proxy = ["idevice/installation_proxy"]
|
||||
springboardservices = ["idevice/springboardservices"]
|
||||
misagent = ["idevice/misagent"]
|
||||
mobile_image_mounter = ["idevice/mobile_image_mounter"]
|
||||
location_simulation = ["idevice/location_simulation"]
|
||||
pair = ["idevice/pair"]
|
||||
rsd = ["idevice/rsd"]
|
||||
syslog_relay = ["idevice/syslog_relay"]
|
||||
tcp = ["idevice/tcp"]
|
||||
tunnel_tcp_stack = ["idevice/tunnel_tcp_stack"]
|
||||
tss = ["idevice/tss"]
|
||||
tunneld = ["idevice/tunneld"]
|
||||
usbmuxd = ["idevice/usbmuxd"]
|
||||
xpc = ["idevice/xpc"]
|
||||
full = [
|
||||
"afc",
|
||||
"amfi",
|
||||
"core_device_proxy",
|
||||
"crashreportcopymobile",
|
||||
"debug_proxy",
|
||||
"dvt",
|
||||
"heartbeat",
|
||||
"house_arrest",
|
||||
"installation_proxy",
|
||||
"misagent",
|
||||
"mobile_image_mounter",
|
||||
"pair",
|
||||
"usbmuxd",
|
||||
"xpc",
|
||||
"location_simulation",
|
||||
"rsd",
|
||||
"tcp",
|
||||
"tunnel_tcp_stack",
|
||||
"tss",
|
||||
"tunneld",
|
||||
"springboardservices",
|
||||
"syslog_relay",
|
||||
]
|
||||
default = ["full"]
|
||||
|
||||
[build-dependencies]
|
||||
cbindgen = "0.28.0"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user