forked from M-Labs/zynq-rs
WIP replace crates' patch with forked fatfs
Signed-off-by: Egor Savkin <es@m-labs.hk>
This commit is contained in:
parent
e78460ecf6
commit
755e7d6aae
|
@ -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",
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue