From 2bc338fdf5af2a4b9a9d2f654b39d9e3d535c4e1 Mon Sep 17 00:00:00 2001 From: LIAUD Corentin Date: Sun, 11 May 2025 14:45:50 +0200 Subject: [PATCH] fix: add missing chrono "std" feature --- 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 0b7797a..2e63047 100644 --- a/adb_client/Cargo.toml +++ b/adb_client/Cargo.toml @@ -13,7 +13,7 @@ version.workspace = true base64 = { version = "0.22.1" } bincode = { version = "1.3.3" } byteorder = { version = "1.5.0" } -chrono = { version = "0.4.40", default-features = false } +chrono = { version = "0.4.40", default-features = false, features = ["std"] } homedir = { version = "0.3.4" } image = { version = "0.25.5", default-features = false } log = { version = "0.4.26" }