This repository was archived by the owner on Nov 14, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,23 @@ matrix:
32
32
rust : nightly
33
33
if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
34
34
35
+ # MSRV
36
+ - env : TARGET=x86_64-unknown-linux-gnu
37
+ rust : 1.31.0
38
+
39
+ - env : TARGET=thumbv7m-none-eabi
40
+ rust : 1.31.0
41
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
42
+
43
+ - env : TARGET=thumbv7em-none-eabi
44
+ rust : 1.31.0
45
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
46
+
47
+ - env : TARGET=thumbv7em-none-eabihf
48
+ rust : 1.31.0
49
+ if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
50
+
51
+
35
52
before_install : set -e
36
53
37
54
install :
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ This project is developed and maintained by the [Cortex-M team][team].
6
6
7
7
## [ Documentation] ( https://docs.rs/panic-itm )
8
8
9
+ ## Minimum Supported Rust Version (MSRV)
10
+
11
+ This crate is guaranteed to compile on stable Rust 1.31.0 and up. It * might*
12
+ compile with older versions but that may change in any new patch release.
13
+
9
14
## License
10
15
11
16
Licensed under either of
You can’t perform that action at this time.
0 commit comments