From 6eef682200c9e5bb4ec449732bd2698a7ca62cf4 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 3 Apr 2024 14:27:47 +0200 Subject: [PATCH] Update littlefs2-sys to v0.2.0 --- CHANGELOG.md | 3 +++ Cargo.toml | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcf955e83..3459d9416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Added object-safe traits `DynFile`, `DynFilesystem` and `DynStorage` for accessing `Storage`, `Filesystem` and `File` implementations for any storage. +## Changed +- Update `littlefs2-sys` to v0.2.0. + ## Fixed - Fixed macro hygiene for `path!`. diff --git a/Cargo.toml b/Cargo.toml index 1cc635dfb..2a5ae91ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ default-features = false version = "0.2" [dependencies.littlefs2-sys] -version = "0.1.6" +version = "0.2.0" [dependencies.serde] version = "1" @@ -57,3 +57,6 @@ log-error = [] # member `char name[LFS_NAME_MAX+1]`. # This means that if we change `traits::Storage::FILENAME_MAX_PLUS_ONE`, # we need to pass this on! + +[patch.crates-io] +littlefs2-sys = { git = "https://github.com/trussed-dev/littlefs2-sys", rev = "refs/pull/11/head" }