Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## Unreleased

- *Breaking:* The feature `defmt-03` has been renamed `defmt-10` to avoid a future breaking change.

## 5.0.0 31-07-25

- Added `Key` implementation for the unit type `()` for easy storage of a single value
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.87"

[dependencies]
embedded-storage-async = "0.4.1"
defmt = { version = "0.3", optional = true }
defmt = { version = "1.0.1", optional = true }
futures = { version = "0.3.30", features = ["executor"], optional = true }
approx = { version = "0.5.1", optional = true }
arrayvec = { version = "0.7.4", default-features = false, optional = true }
Expand All @@ -26,7 +26,7 @@ futures = { version = "0.3.30", features = ["executor"] }
futures-test = "0.3.30"

[features]
defmt-03 = ["dep:defmt"]
defmt-10 = ["dep:defmt"]
std = []
# Enable the implementation of the map Key trait for ArrayVec and ArrayString
arrayvec = ["dep:arrayvec"]
Expand Down
Loading