Update adb_client to remove unneeded deps from tcp

This commit is contained in:
Sashanoraa
2025-04-25 17:45:03 -04:00
committed by Cooper Quintin
parent da34c05364
commit 894f457751
2 changed files with 9 additions and 242 deletions
+7 -2
View File
@@ -7,8 +7,6 @@ edition = "2024"
vendor = []
[dependencies]
adb_client = { git = "https://github.com/gaykitty/adb_client.git", branch = "nusb" }
# adb_client = { path = "../../adb_client/adb_client" }
anyhow = "1.0.98"
clap = { version = "4.5.37", features = ["derive"] }
md5 = "0.7.0"
@@ -19,3 +17,10 @@ sha2 = "0.10.8"
tokio = { version = "1.44.2", features = ["full"] }
tokio-retry2 = "0.5.7"
tokio-stream = "0.1.17"
[dependencies.adb_client]
# path = "../../adb_client/adb_client"
git = "https://github.com/gaykitty/adb_client.git"
branch = "nusb"
default-features = false
features = ["usb"]