Compare commits

..

10 Commits

5 changed files with 15 additions and 13 deletions

4
Cargo.lock generated
View File

@ -41,7 +41,7 @@ checksum = "20b1438ef42c655665a8ab2c1c6d605a305f031d38d9be689ddfef41a20f3aa2"
[[package]] [[package]]
name = "core_io" name = "core_io"
version = "0.1.0" version = "0.1.0"
source = "git+https://git.m-labs.hk/srenblad/rs-core_io.git?branch=main#0af646fef07b2e2ac90b5aae998fd28c93efdbc1" source = "git+https://git.m-labs.hk/M-Labs/rs-core_io.git?rev=e9d3edf027#e9d3edf0272502b0dd6c26e8a4869c2912657615"
[[package]] [[package]]
name = "embedded-hal" name = "embedded-hal"
@ -69,7 +69,7 @@ dependencies = [
[[package]] [[package]]
name = "fatfs" name = "fatfs"
version = "0.3.6" version = "0.3.6"
source = "git+https://git.m-labs.hk/srenblad/rust-fatfs.git?branch=main#62a8cafc1561eda34448ed2fcedaf87f26a63030" source = "git+https://git.m-labs.hk/M-Labs/rust-fatfs.git?rev=4b5e420084#4b5e420084fd1c4a9c105680b687523909b6469c"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"byteorder", "byteorder",

6
flake.lock generated
View File

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1734202038, "lastModified": 1734529975,
"narHash": "sha256-LwcGIkORU8zfQ/8jAgptgPY8Zf9lGKB0vtNdQyEkaN8=", "narHash": "sha256-ze3IJksru9dN0keqUxY0WNf8xrwfs8Ty/z9v/keyBbg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "bcba2fbf6963bf6bed3a749f9f4cf5bff4adb96d", "rev": "72d11d40b9878a67c38f003c240c2d2e1811e72a",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -108,8 +108,8 @@
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
outputHashes = { outputHashes = {
"core_io-0.1.0" = "sha256-tepvvnkDTYDJ3uvuuSJISevYFkl802GHBHSwn1fXKJE="; "core_io-0.1.0" = "sha256-0HINFWRiJx8pjMgUOL/CS336ih7SENSRh3Kah9LPRrw=";
"fatfs-0.3.6" = "sha256-Z6iueATKemecxleUd5vzWMNq0PHS7hD422PXOiyDHUM="; "fatfs-0.3.6" = "sha256-Nz9hCq/1YgSXF8ltJ5ZawV0Hc8WV44KNK0tJdVnNb4U=";
}; };
}; };

View File

@ -9,12 +9,13 @@ libboard_zynq = { path = "../libboard_zynq" }
log = "0.4" log = "0.4"
[dependencies.core_io] [dependencies.core_io]
git = "https://git.m-labs.hk/srenblad/rs-core_io.git" git = "https://git.m-labs.hk/M-Labs/rs-core_io.git"
branch = "main" rev = "e9d3edf027"
features = ["collections"]
[dependencies.fatfs] [dependencies.fatfs]
git = "https://git.m-labs.hk/srenblad/rust-fatfs.git" git = "https://git.m-labs.hk/M-Labs/rust-fatfs.git"
branch = "main" rev = "4b5e420084"
default-features = false default-features = false
features = ["core_io"] features = ["core_io"]

View File

@ -23,6 +23,7 @@ libregister = { path = "../libregister" }
libconfig = { path = "../libconfig" } libconfig = { path = "../libconfig" }
[dependencies.core_io] [dependencies.core_io]
git = "https://git.m-labs.hk/srenblad/rs-core_io.git" git = "https://git.m-labs.hk/M-Labs/rs-core_io.git"
branch = "main" rev = "e9d3edf027"
features = ["collections"]