Skip to content

Commit

Permalink
Update Rust version and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragarnoy committed Nov 11, 2024
1 parent 9493a57 commit 6b2b5e8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability
strategy:
matrix:
msrv: ["1.80"]
msrv: ["1.82"]
target: [thumbv7em-none-eabihf]
name: ubuntu / ${{ matrix.msrv }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ readme = "README.md"
license = "MIT"
edition = "2021"
version = "0.1.4"
rust-version = "1.80"
rust-version = "1.82"

[dependencies]
a121-sys = { version = "0.4", features = ["distance", "presence"] }
a121-sys = { version = "0.5.0", features = ["distance", "presence"] }

defmt = { version = "0.3", optional = true }

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ If you are using a platform that does not provide these functions, you can enabl
See the [documentation](https://docs.rs/a121-rs) for detailed usage instructions and examples.

## Feature flags
feature | description
--- | ---
distance | Enable distance measurement module
presence | Enable presence detection module (coming soon)
libm | Use libm crate for floating point operations
nightly-logger | If the C wrapper for logging does not compile with stable rust, enable this feature to use nightly rust with a custom logger
| feature | description |
|----------------|------------------------------------------------------------------------------------------------------------------------------|
| distance | Enable distance measurement module |
| presence | Enable presence detection module (coming soon) |
| libm | Use libm crate for floating point operations |
| nightly-logger | If the C wrapper for logging does not compile with stable rust, enable this feature to use nightly rust with a custom logger |

## Examples

Expand Down

0 comments on commit 6b2b5e8

Please sign in to comment.