Skip to content

Commit

Permalink
fixup! Update littlefs2 to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-nitrokey committed Oct 24, 2024
1 parent ac9af7e commit f93c0db
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ delog = { version = "0.1.6", features = ["std-log"] }
cbor-smol = "0.5.0"
heapless-bytes = { version = "0.3.0" }
heapless = "0.7"
littlefs2 = "0.5"
littlefs2-core = "0.1"
serde = { version = "1.0", default-features = false }
serde-indexed = "0.1.0"
serde_bytes = { version = "0.11.10", default-features = false, features=["alloc"] }
Expand Down
2 changes: 1 addition & 1 deletion src/lib/commands.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use cbor_smol::cbor_deserialize;
use littlefs2::path;
use heapless::Vec;
use littlefs2_core::path;

use heapless_bytes::{Bytes, Bytes32};
use trussed::api::reply::Encrypt;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/rk_files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Imported from the https://github.com/solokeys/fido-authenticator/ project

use heapless_bytes::Bytes;
use littlefs2::path;
use littlefs2_core::path;
use trussed::types::PathBuf;

#[inline(never)]
Expand Down
2 changes: 1 addition & 1 deletion src/lib/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// TODO Consider importing PersistentState from fido-authenticator directly if needed

use ctap_types::Error;
use littlefs2::path;
use littlefs2_core::path;
use trussed::types::{Path, PathBuf};

use trussed::{
Expand Down
2 changes: 1 addition & 1 deletion src/lib/wcstate.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![allow(non_camel_case_types)]

use heapless_bytes::{Bytes, Bytes32};
use littlefs2::path;
use littlefs2_core::path;
use trussed::{
client, syscall, try_syscall,
types::{KeyId, Location, Path},
Expand Down

0 comments on commit f93c0db

Please sign in to comment.