aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/src
diff options
context:
space:
mode:
authorGravatar Adam Greig <adam@adamgreig.com> 2020-04-05 15:53:34 +0100
committerGravatar Adam Greig <adam@adamgreig.com> 2020-04-05 15:53:34 +0100
commit36033333a4e99983cf58110707ec1e8133c2914b (patch)
treed5931e9246b37e90450f65caf0bc33595d2adb06 /cortex-m-rt/src
parentb731402e5e7da107be6f2eafd91b20aad3095a8e (diff)
downloadcortex-m-36033333a4e99983cf58110707ec1e8133c2914b.tar.gz
cortex-m-36033333a4e99983cf58110707ec1e8133c2914b.tar.zst
cortex-m-36033333a4e99983cf58110707ec1e8133c2914b.zip
Update MSRV to 1.39.0, fix doc test that fails <1.41.0.
Diffstat (limited to 'cortex-m-rt/src')
-rw-r--r--cortex-m-rt/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs
index 867d671..4dabad6 100644
--- a/cortex-m-rt/src/lib.rs
+++ b/cortex-m-rt/src/lib.rs
@@ -372,6 +372,7 @@
//! [`MaybeUninit`]: https://doc.rust-lang.org/core/mem/union.MaybeUninit.html
//!
//! ```no_run,edition2018
+//! # extern crate core;
//! use core::mem::MaybeUninit;
//!
//! const STACK_SIZE: usize = 8 * 1024;
@@ -391,7 +392,7 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
-//! The MSRV of this release is Rust 1.32.0.
+//! The MSRV of this release is Rust 1.39.0.
// # Developer notes
//