Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update dependencies, switch to stable Rust, and update readme #33

Merged
merged 1 commit into from
Jan 16, 2024
Merged
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
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ embedded-io-async = "0.6"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
embedded-io = "0.6"
embedded-io-adapters ={ version = "0.6", features = ["tokio-1"]}
embedded-io-adapters = { version = "0.6", features = ["tokio-1"] }
embedded-io-async = { version = "0.6" }
tokio-test = { version = "0.4.2"}
env_logger = "0.9.0"
tokio-test = { version = "0.4.2" }
env_logger = "0.10.1"
futures = { version = "0.3.21" }
log = { version = "0.4.14"}
serial_test = "0.6.0"
log = { version = "0.4.14" }
serial_test = "3.0.0"

[features]
default = ["std"]
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]>
13 changes: 10 additions & 3 deletions rust-toolchain.toml
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",
]
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#![macro_use]
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(dead_code)]
#![feature(type_alias_impl_trait)]
pub(crate) mod fmt;

pub mod client;
Expand Down
Loading