From 86013384f662e80b9d90f81bd73fc0b102cccf0f Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 21 Jul 2024 14:09:08 +0800 Subject: [PATCH] remove core_io dependency from fatfs --- Cargo.lock | 1 - libconfig/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index daa8f27..d8216a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,7 +75,6 @@ checksum = "e18f80a87439240dac45d927fd8f8081b6f1e34c03e97271189fa8a8c2e96c8f" dependencies = [ "bitflags", "byteorder", - "core_io", "log", ] diff --git a/libconfig/Cargo.toml b/libconfig/Cargo.toml index 2357959..77cd301 100644 --- a/libconfig/Cargo.toml +++ b/libconfig/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] libboard_zynq = { path = "../libboard_zynq" } core_io = { git = "https://git.m-labs.hk/abdul124/core_io.git", rev = "7b6dba6", features = ["collections"] } -fatfs = { version = "0.3", features = ["core_io"], default-features = false } +fatfs = { version = "0.3", default-features = false } log = "0.4" [features]