mirror of
https://github.com/nab138/isideload.git
synced 2026-03-02 06:26:16 +01:00
41 lines
1.0 KiB
TOML
41 lines
1.0 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"]
|
|
install = ["dep:idevice"]
|
|
|
|
[dependencies]
|
|
idevice = { version = "0.1.51", optional = true }
|
|
plist = "1.8"
|
|
plist-macro = "0.1.3"
|
|
reqwest = { version = "0.13.1", features = ["json", "gzip"] }
|
|
thiserror = "2.0.17"
|
|
chrono = "0.4.43"
|
|
async-trait = "0.1.89"
|
|
serde = "1.0.228"
|
|
rand = "0.9.2"
|
|
uuid = "1.19.0"
|
|
sha2 = "0.10.9"
|
|
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 = { package = "nab138_srp", version = "0.6.0" }
|
|
pbkdf2 = "0.12.2"
|
|
hmac = "0.12.1"
|
|
cbc = { version = "0.1.2", features = ["std"] }
|
|
aes = "0.8.4"
|