WIP replace crates' patch with forked fatfs

Signed-off-by: Egor Savkin <es@m-labs.hk>
pull/103/head
Egor Savkin 2023-02-08 16:36:46 +08:00
parent e78460ecf6
commit 755e7d6aae
3 changed files with 2 additions and 6 deletions

3
Cargo.lock generated
View File

@ -72,8 +72,7 @@ dependencies = [
[[package]]
name = "fatfs"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05669f8e7e2d7badc545c513710f0eba09c2fbef683eb859fd79c46c355048e0"
source = "git+https://github.com/thomasfire/rust-fatfs.git?branch=stable-0.3#bfbb0e9d04ed07d8f5864af2bd844842febd6f77"
dependencies = [
"bitflags",
"byteorder",

View File

@ -18,6 +18,3 @@ opt-level = 's'
lto = true
debug-assertions = false
overflow-checks = false
[patch.crates-io]
core_io = { git = "https://github.com/thomasfire/rust-core_io.git" }

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
libboard_zynq = { path = "../libboard_zynq" }
core_io = { version = "0.1.20221029", features = ["collections"], git = "https://github.com/thomasfire/rust-core_io.git" }
fatfs = { version = "0.3", features = ["core_io"], default-features = false }
fatfs = { version = "0.3.6", features = ["core_io"], default-features = false, git = "https://github.com/thomasfire/rust-fatfs.git", branch = "stable-0.3" }
log = "0.4"
[features]