Skip to content

Commit

Permalink
Merge pull request #22 from rursprung/dependabot/cargo/heapless-0.8
Browse files Browse the repository at this point in the history
Update heapless requirement from 0.7 to 0.8
  • Loading branch information
rursprung authored Nov 13, 2023
2 parents 23dedc6 + 1466006 commit eb9b346
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
### Changed
* Due to dependency updates the MSRV has been updated from 1.60 to 1.62. This should only be relevant if you use the `defmt` feature, but we now only test with 1.62 and not older releases, so it's not guaranteed to work otherwise.
* Update to `heapless:0.8.0`

## [0.1.1] - 2023-01-07
### Changed
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ license = "MIT OR Apache-2.0"

[dependencies]
defmt = { version = "0.3", optional = true }
heapless = { version = "0.7" }
heapless = { version = "0.8" }

rgb = { version = "0.8", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }

[features]
default = ["accelerometer_event", "button_event", "color_event", "gyro_event", "location_event", "magnetometer_event", "quaternion_event"]

defmt = ["dep:defmt", "heapless/defmt-impl"]
defmt = ["dep:defmt", "heapless/defmt-03"]

accelerometer_event = []
button_event = []
Expand Down

0 comments on commit eb9b346

Please sign in to comment.