blob: 9cf2c14c4dc1cc3d6483f7ae807bdbbae42de466 (
plain) (
blame)
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
|
[package]
authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["embedded", "no-std"]
description = "Minimal runtime / startup for Cortex-M microcontrollers"
documentation = "https://docs.rs/cortex-m-rt"
readme = "README.md"
keywords = ["arm", "cortex-m", "runtime", "startup"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rt"
repository = "https://github.com/japaric/cortex-m-rt"
version = "0.5.3"
[dependencies]
r0 = "0.2.1"
cortex-m-rt-macros = { path = "macros", version = "0.1.0" }
[dev-dependencies]
cortex-m = "0.5.4"
panic-abort = "0.3.0"
panic-semihosting = "0.4.0"
[target.'cfg(not(target_os = "none"))'.dev-dependencies]
compiletest_rs = "0.3.14"
[features]
device = []
|