-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dependencies, switch to stable Rust, and update readme
- Update Cargo.toml dependencies: `embedded-io-adapters`, `env_logger`, `serial_test`. - Switch to stable Rust 1.75. - Add MSRV section in README.md, documenting compatibility with stable Rust 1.75+.
- Loading branch information
1 parent
6dd6f29
commit 2c1a05a
Showing
4 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,9 +30,13 @@ cargo test integration | |
cargo test load | ||
``` | ||
|
||
## Minimum supported Rust version (MSRV) | ||
Rust-mqtt is guaranteed to compile on stable Rust 1.75 and up. | ||
It might compile with older versions but that may change in any new patch release. | ||
|
||
## Acknowledgment | ||
This project could not be in state in which currently is without Ulf Lilleengen and rest of the community | ||
from [Drogue IoT](https://github.com/drogue-iot). | ||
|
||
## Contact | ||
For any information contact me on email <[email protected]> | ||
For any information contact me on email <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
[toolchain] | ||
channel = "nightly-2023-11-01" | ||
components = [ "rust-src", "rustfmt" ] | ||
targets = [ "thumbv7em-none-eabi", "thumbv7m-none-eabi", "thumbv6m-none-eabi", "thumbv7em-none-eabihf", "thumbv8m.main-none-eabihf", "wasm32-unknown-unknown" ] | ||
channel = "1.75" | ||
components = ["rust-src", "rustfmt"] | ||
targets = [ | ||
"thumbv7em-none-eabi", | ||
"thumbv7m-none-eabi", | ||
"thumbv6m-none-eabi", | ||
"thumbv7em-none-eabihf", | ||
"thumbv8m.main-none-eabihf", | ||
"wasm32-unknown-unknown", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters