Switch to having the rev for adb_client in Cargo.toml

This commit is contained in:
Sashanoraa
2025-05-15 23:08:59 -04:00
committed by Cooper Quintin
parent fce30a78a2
commit 1c4e9b8499
2 changed files with 3 additions and 5 deletions

2
Cargo.lock generated
View File

@@ -5,7 +5,7 @@ version = 4
[[package]] [[package]]
name = "adb_client" name = "adb_client"
version = "2.1.11" version = "2.1.11"
source = "git+https://github.com/gaykitty/adb_client.git?branch=rayhunter#1fb0f4f5cbcc95bbbb98db4ee2f1e53a1005aa81" source = "git+https://github.com/gaykitty/adb_client.git?rev=1fb0f4f5cbcc95bbbb98db4ee2f1e53a1005aa81#1fb0f4f5cbcc95bbbb98db4ee2f1e53a1005aa81"
dependencies = [ dependencies = [
"async-io", "async-io",
"base64", "base64",

View File

@@ -23,15 +23,13 @@ tokio-retry2 = "0.5.7"
tokio-stream = "0.1.17" tokio-stream = "0.1.17"
[target.'cfg(target_os = "linux")'.dependencies.adb_client] [target.'cfg(target_os = "linux")'.dependencies.adb_client]
# path = "../../adb_client/adb_client"
git = "https://github.com/gaykitty/adb_client.git" git = "https://github.com/gaykitty/adb_client.git"
branch = "rayhunter" rev = "1fb0f4f5cbcc95bbbb98db4ee2f1e53a1005aa81"
default-features = false default-features = false
features = ["trans-nusb"] features = ["trans-nusb"]
[target.'cfg(any(target_os = "windows", target_os = "macos"))'.dependencies.adb_client] [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" git = "https://github.com/gaykitty/adb_client.git"
branch = "rayhunter" rev = "1fb0f4f5cbcc95bbbb98db4ee2f1e53a1005aa81"
default-features = false default-features = false
features = ["trans-libusb"] features = ["trans-libusb"]