use forked core_io, fatfs

This commit is contained in:
Simon Renblad 2024-12-17 14:17:22 +08:00
parent 80180ba8f6
commit 6e134ea7ff
2 changed files with 16 additions and 5 deletions

View File

@ -6,10 +6,18 @@ edition = "2018"
[dependencies]
libboard_zynq = { path = "../libboard_zynq" }
core_io = { version = "0.1", features = ["collections"] }
fatfs = { version = "0.3", features = ["core_io"], default-features = false }
log = "0.4"
[dependencies.core_io]
git = "https://git.m-labs.hk/srenblad/rs-core_io.git"
branch = "main"
[dependencies.fatfs]
git = "https://git.m-labs.hk/srenblad/rust-fatfs.git"
branch = "main"
default-features = false
features = ["core_io"]
[features]
target_zc706 = []
target_coraz7 = []

View File

@ -16,10 +16,13 @@ default = ["target_zc706"]
[dependencies]
log = "0.4"
byteorder = { version = "1.3", default-features = false }
core_io = { version = "0.1", features = ["collections"] }
libboard_zynq = { path = "../libboard_zynq" }
libsupport_zynq = { path = "../libsupport_zynq" }
libcortex_a9 = { path = "../libcortex_a9" }
libregister = { path = "../libregister" }
libconfig = { path = "../libconfig" }
[dependencies.core_io]
git = "https://git.m-labs.hk/srenblad/rs-core_io.git"
branch = "main"