Compare commits
10 Commits
master
...
bump_to_ll
Author | SHA1 | Date | |
---|---|---|---|
0e7644a834 | |||
d0d2872bf5 | |||
ddfc1ce156 | |||
65307dc53e | |||
8ef1ae396b | |||
26cd118270 | |||
50b79f529d | |||
f848f43f23 | |||
22a860d24e | |||
6e134ea7ff |
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -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/M-Labs/rs-core_io.git?rev=e9d3edf027#e9d3edf0272502b0dd6c26e8a4869c2912657615"
|
source = "git+https://git.m-labs.hk/srenblad/rs-core_io.git?branch=main#0af646fef07b2e2ac90b5aae998fd28c93efdbc1"
|
||||||
|
|
||||||
[[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/M-Labs/rust-fatfs.git?rev=4b5e420084#4b5e420084fd1c4a9c105680b687523909b6469c"
|
source = "git+https://git.m-labs.hk/srenblad/rust-fatfs.git?branch=main#62a8cafc1561eda34448ed2fcedaf87f26a63030"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
|
6
flake.lock
generated
6
flake.lock
generated
@ -2,11 +2,11 @@
|
|||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1734529975,
|
"lastModified": 1734202038,
|
||||||
"narHash": "sha256-ze3IJksru9dN0keqUxY0WNf8xrwfs8Ty/z9v/keyBbg=",
|
"narHash": "sha256-LwcGIkORU8zfQ/8jAgptgPY8Zf9lGKB0vtNdQyEkaN8=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "72d11d40b9878a67c38f003c240c2d2e1811e72a",
|
"rev": "bcba2fbf6963bf6bed3a749f9f4cf5bff4adb96d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -108,8 +108,8 @@
|
|||||||
cargoLock = {
|
cargoLock = {
|
||||||
lockFile = ./Cargo.lock;
|
lockFile = ./Cargo.lock;
|
||||||
outputHashes = {
|
outputHashes = {
|
||||||
"core_io-0.1.0" = "sha256-0HINFWRiJx8pjMgUOL/CS336ih7SENSRh3Kah9LPRrw=";
|
"core_io-0.1.0" = "sha256-tepvvnkDTYDJ3uvuuSJISevYFkl802GHBHSwn1fXKJE=";
|
||||||
"fatfs-0.3.6" = "sha256-Nz9hCq/1YgSXF8ltJ5ZawV0Hc8WV44KNK0tJdVnNb4U=";
|
"fatfs-0.3.6" = "sha256-Z6iueATKemecxleUd5vzWMNq0PHS7hD422PXOiyDHUM=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -9,13 +9,12 @@ libboard_zynq = { path = "../libboard_zynq" }
|
|||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
||||||
[dependencies.core_io]
|
[dependencies.core_io]
|
||||||
git = "https://git.m-labs.hk/M-Labs/rs-core_io.git"
|
git = "https://git.m-labs.hk/srenblad/rs-core_io.git"
|
||||||
rev = "e9d3edf027"
|
branch = "main"
|
||||||
features = ["collections"]
|
|
||||||
|
|
||||||
[dependencies.fatfs]
|
[dependencies.fatfs]
|
||||||
git = "https://git.m-labs.hk/M-Labs/rust-fatfs.git"
|
git = "https://git.m-labs.hk/srenblad/rust-fatfs.git"
|
||||||
rev = "4b5e420084"
|
branch = "main"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["core_io"]
|
features = ["core_io"]
|
||||||
|
|
||||||
|
@ -23,7 +23,6 @@ libregister = { path = "../libregister" }
|
|||||||
libconfig = { path = "../libconfig" }
|
libconfig = { path = "../libconfig" }
|
||||||
|
|
||||||
[dependencies.core_io]
|
[dependencies.core_io]
|
||||||
git = "https://git.m-labs.hk/M-Labs/rs-core_io.git"
|
git = "https://git.m-labs.hk/srenblad/rs-core_io.git"
|
||||||
rev = "e9d3edf027"
|
branch = "main"
|
||||||
features = ["collections"]
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user