forked from rust-embedded/cortex-m-rt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (42 loc) · 1.26 KB
/
Cargo.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
authors = [
"The Cortex-M Team <[email protected]>",
"Jorge Aparicio <[email protected]>",
"Hideki Sekine <[email protected]>",
]
categories = ["embedded", "no-std"]
description = "Minimal runtime / startup for Cortex-M microcontrollers"
documentation = "https://docs.rs/cortex-m-rt/"
keywords = ["arm", "cortex-m", "runtime", "startup"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rt"
readme = "README.md"
repository = "https://github.com/rust-embedded/cortex-m-rt"
version = "0.6.8"
autoexamples = true
[dependencies]
r0 = "0.2.2"
cortex-m-rt-macros = { path = "macros", version = "0.1.5" }
[target.thumbv7em-none-eabihf.dev-dependencies]
cortex-m-semihosting = "0.3.1"
[target.thumbv7em-none-eabi.dev-dependencies]
cortex-m-semihosting = "0.3.1"
[target.thumbv7m-none-eabi.dev-dependencies]
cortex-m-semihosting = "0.3.1"
[target.thumbv6m-none-eabi.dev-dependencies]
cortex-m-semihosting = "0.3.1"
[dev-dependencies]
cortex-m = "0.6"
panic-halt = "0.2.0"
[dev-dependencies.rand]
default-features = false
version = "0.5.5"
[target.'cfg(not(target_os = "none"))'.dev-dependencies]
compiletest_rs = "0.3.14"
[[example]]
name = "device"
required-features = ["device"]
[features]
device = []
[package.metadata.docs.rs]
features = ["device"]