Files
isideload/isideload/Cargo.toml
2026-02-05 18:16:21 -05:00

44 lines
1.1 KiB
TOML

[package]
name = "isideload"
description = "Sideload iOS/iPadOS applications"
license = "MIT"
authors = ["Nicholas Sharp <nab@nabdev.me>"]
version = "0.2.0"
edition = "2024"
repository = "https://github.com/nab138/isideload"
documentation = "https://docs.rs/isideload"
keywords = ["ios", "sideload"]
readme = "../README.md"
[features]
default = ["install", "keyring-storage"]
install = ["dep:idevice"]
keyring-storage = ["keyring"]
[dependencies]
idevice = { version = "0.1.52", optional = true }
plist = "1.8"
plist-macro = "0.1.3"
reqwest = { version = "0.13.1", features = ["json", "gzip"] }
thiserror = "2.0.17"
async-trait = "0.1.89"
serde = "1.0.228"
rand = "0.9.2"
uuid = {version = "1.20.0", features = ["v4"] }
sha2 = "0.11.0-rc.5"
tracing = "0.1.44"
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-webpki-roots"] }
rootcause = "0.11.1"
futures-util = "0.3.31"
serde_json = "1.0.149"
base64 = "0.22.1"
hex = "0.4.3"
srp = "0.7.0-rc.1"
pbkdf2 = "0.13.0-rc.9"
hmac = "0.13.0-rc.5"
cbc = { version = "0.2.0-rc.3", features = ["alloc"] }
aes = "0.9.0-rc.4"
aes-gcm = "0.11.0-rc.3"
tokio = "1.49.0"
keyring = { version = "3.6.3", optional = true }