diff options
author | 2021-12-25 13:10:10 +0100 | |
---|---|---|
committer | 2021-12-25 13:10:10 +0100 | |
commit | 93ceb6bdef9f15256ff89a1d9a333dbd04604dfb (patch) | |
tree | a265794b62d5cf1ae08d047c27dc20ded2b7ab67 | |
parent | c78177c37e3192c7a41a3ea8e7c139751c1a8989 (diff) | |
download | rtic-93ceb6bdef9f15256ff89a1d9a333dbd04604dfb.tar.gz rtic-93ceb6bdef9f15256ff89a1d9a333dbd04604dfb.tar.zst rtic-93ceb6bdef9f15256ff89a1d9a333dbd04604dfb.zip |
Edition: Bump to 2021
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,7 @@ authors = [ categories = ["concurrency", "embedded", "no-std"] description = "Real-Time Interrupt-driven Concurrency (RTIC): a concurrency framework for building real-time systems" documentation = "https://rtic.rs/" -edition = "2018" +edition = "2021" keywords = ["arm", "cortex-m"] license = "MIT OR Apache-2.0" name = "cortex-m-rtic" @@ -30,6 +30,7 @@ //! [SemVer]: https://semver.org/spec/v2.0.0.html #![deny(missing_docs)] +#![deny(rust_2021_compatibility)] #![deny(rust_2018_compatibility)] #![deny(rust_2018_idioms)] #![no_std] |