1
0
Fork 0

remove core_io dependency from fatfs

This commit is contained in:
= 2024-07-21 14:09:08 +08:00
parent ea0e1cf3ca
commit 86013384f6
2 changed files with 1 additions and 2 deletions

1
Cargo.lock generated
View File

@ -75,7 +75,6 @@ checksum = "e18f80a87439240dac45d927fd8f8081b6f1e34c03e97271189fa8a8c2e96c8f"
dependencies = [
"bitflags",
"byteorder",
"core_io",
"log",
]

View File

@ -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]