aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Lindgren <per.lindgren@ltu.se>2021-12-25 18:37:29 +0100
committerPer Lindgren <per.lindgren@ltu.se>2021-12-25 18:37:29 +0100
commit887b0686117fc3976671434c6935999ad07b915e (patch)
tree4149d4d782b2f72e2434c0558bcef830df5ab2f2
parent152955c18a1d81536a7e39bdda2dbcea1fe6948f (diff)
README: Remove rustc badge and Requirements
-rw-r--r--README.md9
1 files changed, 2 insertions, 7 deletions
diff --git a/README.md b/README.md
index f81f404..dc6c374 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,6 @@ Formerly known as Real-Time For the Masses.
[![crates.io](https://img.shields.io/crates/v/cortex-m-rtic)](https://crates.io/crates/cortex-m-rtic)
[![docs.rs](https://docs.rs/cortex-m-rtic/badge.svg)](https://docs.rs/cortex-m-rtic)
[![book](https://img.shields.io/badge/web-rtic.rs-red.svg?style=flat&label=book&colorB=d33847)](https://rtic.rs/)
-[![rustc](https://img.shields.io/badge/rustc-1.36+-lightgray.svg)](https://github.com/rust-lang/rust/releases/tag/1.36.0)
[![matrix](https://img.shields.io/matrix/rtic:matrix.org)](https://matrix.to/#/#rtic:matrix.org)
[![Meeting notes](https://hackmd.io/badge.svg)](https://hackmd.io/@xmis9JvZT8Gvo9lOEKyZ4Q/SkBJKsjuH)
@@ -46,10 +45,6 @@ Formerly known as Real-Time For the Masses.
and scheduling analysis techniques. (Though we haven't yet developed Rust
friendly tooling for that.)
-## Requirements
-
-- Applications must be written using the 2018 edition.
-
### Crate `cortex-m` 0.6 vs 0.7 in RTIC 0.5.x
The crate `cortex-m` 0.7 started using trait `InterruptNumber` for interrupts instead of `Nr` from `bare-metal`. In order to preserve backwards compatibility, RTIC 0.5.x will keep using `cortex-m` 0.6 by default. `cortex-m` 0.7 can be enabled using the feature `cortex-m-7` and disabling default features:
@@ -58,9 +53,9 @@ The crate `cortex-m` 0.7 started using trait `InterruptNumber` for interrupts in
cortex-m-rtic = { version = "0.5.8", default-features = false, features = ["cortex-m-7"] }
```
-RTIC 0.6 already uses `cortex-m` 0.7 by default.
+RTIC 1.0.0 already uses `cortex-m` 0.7 by default.
-## [User documentation](https://rtic.rs) - [(Development version)](https://rtic.rs/dev)
+## [User documentation](https://rtic.rs)
## [API reference](https://rtic.rs/stable/api/)