1
0
Fork 0

replace fatfs

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

4
Cargo.lock generated
View File

@ -70,11 +70,11 @@ dependencies = [
[[package]] [[package]]
name = "fatfs" name = "fatfs"
version = "0.3.5" version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://git.m-labs.hk/abdul124/fatfs?rev=9b0d4bd#9b0d4bd28035134d0ae9a41915fbb303a2aeb469"
checksum = "e18f80a87439240dac45d927fd8f8081b6f1e34c03e97271189fa8a8c2e96c8f"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"byteorder", "byteorder",
"core_io",
"log", "log",
] ]

View File

@ -7,7 +7,7 @@ edition = "2018"
[dependencies] [dependencies]
libboard_zynq = { path = "../libboard_zynq" } libboard_zynq = { path = "../libboard_zynq" }
core_io = { git = "https://git.m-labs.hk/abdul124/core_io.git", rev = "7b6dba6", features = ["collections"] } core_io = { git = "https://git.m-labs.hk/abdul124/core_io.git", rev = "7b6dba6", features = ["collections"] }
fatfs = { version = "0.3", default-features = false } fatfs = { git = "https://git.m-labs.hk/abdul124/fatfs.git", rev = "9b0d4bd", features = ["core_io"], default-features = false }
log = "0.4" log = "0.4"
[features] [features]