From b3dfcc5f5f3c1978c8d467350f920b0344e1d8f6 Mon Sep 17 00:00:00 2001 From: oopsbagel Date: Tue, 1 Jul 2025 22:05:56 -0700 Subject: [PATCH] adb_client: disable image default features They aren't used and take a relatively long time to compile. --- adb_client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb_client/Cargo.toml b/adb_client/Cargo.toml index 9db6f05..9ef1c1d 100644 --- a/adb_client/Cargo.toml +++ b/adb_client/Cargo.toml @@ -25,7 +25,7 @@ byteorder = { version = "1.5.0" } chrono = { version = "0.4.40" } futures-lite = { version = "2.6.0", optional = true } homedir = { version = "0.3.4" } -image = { version = "0.25.5" } +image = { version = "0.25.5", default-features = false } lazy_static = { version = "1.5.0", optional = true } log = { version = "0.4.26" } mdns-sd = { version = "0.13.2" }