aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 33e83f7d5a57faeb81351d4e14db900953ab2252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
authors = [
  "Jorge Aparicio <jorge@japaric.io>",
  "Per Lindgren <per.lindgren@ltu.se>",
]
categories = ["concurrency", "embedded", "no-std"]
description = "Real Time For the Masses (RTFM), a framework for building concurrent applications, for ARM Cortex-M microcontrollers"
documentation = "https://docs.rs/cortex-m-rtfm"
keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm"
repository = "https://github.com/japaric/cortex-m-rtfm"
version = "0.1.0"

[build-dependencies]
quote = "0.3.15"
syn = "0.11.10"

[dependencies]
cortex-m = "0.2.4"
static-ref = "0.1.0"
typenum = "1.7.0"

[dev-dependencies]
compiletest_rs = "0.2.5"

[features]
# Number of priority bits
P2 = []
P3 = []
P4 = []
P5 = []
default = ["P4"]