File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ main() {
70
70
cargo init --name foo $td
71
71
echo ' cortex-m = "0.7.0"' >> $td /Cargo.toml
72
72
echo ' cortex-m-rt = "0.6.13"' >> $td /Cargo.toml
73
- echo ' vcell = "0.1.0 "' >> $td /Cargo.toml
73
+ echo ' vcell = "0.1.2 "' >> $td /Cargo.toml
74
74
echo ' [profile.dev]' >> $td /Cargo.toml
75
75
echo ' incremental = false' >> $td /Cargo.toml
76
76
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use std::io::prelude::*;
5
5
use std:: path:: PathBuf ;
6
6
use std:: process:: { Command , Output } ;
7
7
8
- const CRATES_ALL : & [ & str ] = & [ "bare-metal = \" 0.2.0\" " , "vcell = \" 0.1.0 \" " ] ;
8
+ const CRATES_ALL : & [ & str ] = & [ "bare-metal = \" 0.2.0\" " , "vcell = \" 0.1.2 \" " ] ;
9
9
const CRATES_MSP430 : & [ & str ] = & [ "msp430 = \" 0.2.2\" " ] ;
10
10
const CRATES_CORTEX_M : & [ & str ] = & [ "cortex-m = \" 0.7.0\" " , "cortex-m-rt = \" 0.6.13\" " ] ;
11
11
const CRATES_RISCV : & [ & str ] = & [ "riscv = \" 0.5.0\" " , "riscv-rt = \" 0.6.0\" " ] ;
Original file line number Diff line number Diff line change 53
53
//! ```
54
54
//!
55
55
//! The resulting crate must provide an opt-in "rt" feature and depend on these crates:
56
- //! `cortex-m` v0.7, `cortex-m-rt` >=v0.6.13 and `vcell` v0.1.x . Furthermore
56
+ //! `cortex-m` v0.7, `cortex-m-rt` >=v0.6.13 and `vcell` >= v0.1.2 . Furthermore
57
57
//! the "device" feature of `cortex-m-rt` must be enabled when the "rt" feature is enabled. The
58
58
//! `Cargo.toml` of the device crate will look like this:
59
59
//!
60
60
//! ``` toml
61
61
//! [dependencies]
62
62
//! cortex-m = "0.7"
63
- //! vcell = "0.1.0 "
63
+ //! vcell = "0.1.2 "
64
64
//!
65
65
//! [dependencies.cortex-m-rt]
66
66
//! optional = true
You can’t perform that action at this time.
0 commit comments