Files
rayhunter/installer/Cargo.toml
Sashanoraa ec5bd81a70 Update adb_client, now with usb lib being a feature flag
This update also fixes libusb throwing timeouts when it shouldn't
2025-05-16 11:48:23 -07:00

38 lines
1002 B
TOML

[package]
name = "installer"
version = "0.1.0"
edition = "2024"
[features]
vendor = []
[dependencies]
anyhow = "1.0.98"
axum = "0.8.3"
bytes = "1.10.1"
clap = { version = "4.5.37", features = ["derive"] }
hyper = "1.6.0"
hyper-util = "0.1.11"
md5 = "0.7.0"
nusb = "0.1.13"
reqwest = { version = "0.12.15", features = ["json"], default-features = false }
serde = { version = "1.0.219", features = ["derive"] }
sha2 = "0.10.8"
tokio = { version = "1.44.2", features = ["full"] }
tokio-retry2 = "0.5.7"
tokio-stream = "0.1.17"
[target.'cfg(target_os = "linux")'.dependencies.adb_client]
# path = "../../adb_client/adb_client"
git = "https://github.com/gaykitty/adb_client.git"
branch = "rayhunter"
default-features = false
features = ["trans-nusb"]
[target.'cfg(any(target_os = "windows", target_os = "macos"))'.dependencies.adb_client]
# path = "../../adb_client/adb_client"
git = "https://github.com/gaykitty/adb_client.git"
branch = "rayhunter"
default-features = false
features = ["trans-libusb"]