mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-05-17 20:20:34 +00:00
66 lines
1.5 KiB
TOML
66 lines
1.5 KiB
TOML
[package]
|
|
name = "idevice-tools"
|
|
description = "Rust binary tools to interact with services on iOS devices."
|
|
authors = ["Jackson Coxson"]
|
|
version = "0.1.62"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
documentation = "https://docs.rs/idevice"
|
|
repository = "https://github.com/jkcoxson/idevice"
|
|
keywords = ["lockdownd", "ios"]
|
|
default-run = "idevice-tools"
|
|
|
|
[[bin]]
|
|
name = "pair_apple_tv"
|
|
path = "src/pair_apple_tv.rs"
|
|
|
|
# [[bin]]
|
|
# name = "pair_rsd_ios"
|
|
# path = "src/pair_rsd_ios.rs"
|
|
#
|
|
# [[bin]]
|
|
# name = "core_device_proxy_tun"
|
|
# path = "src/core_device_proxy_tun.rs"
|
|
|
|
[[bin]]
|
|
name = "idevice_id"
|
|
path = "src/idevice_id.rs"
|
|
|
|
[[bin]]
|
|
name = "iproxy"
|
|
path = "src/iproxy.rs"
|
|
|
|
[dependencies]
|
|
idevice = { path = "../idevice", features = [
|
|
"full",
|
|
"energy_monitor",
|
|
"device_info",
|
|
"application_listing",
|
|
"condition_inducer",
|
|
"network_monitor",
|
|
"sysmontap",
|
|
"tunnel_tcp_stack_pcap",
|
|
], default-features = false }
|
|
tokio = { version = "1.43", features = ["full"] }
|
|
tracing = { version = "0.1.41" }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
# tun-rs = { version = "1.5", features = ["async"] }
|
|
sha2 = { version = "0.10" }
|
|
ureq = { version = "3" }
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
jkcli = { version = "0.1.1" }
|
|
plist = { version = "1.7" }
|
|
plist-macro = { version = "0.1.3" }
|
|
ns-keyed-archive = "0.1.5"
|
|
uuid = "1.16"
|
|
futures-util = { version = "0.3" }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[features]
|
|
default = ["aws-lc"]
|
|
aws-lc = ["idevice/aws-lc"]
|
|
ring = ["idevice/ring"]
|
|
openssl = ["idevice/openssl"]
|