blob: 37a93f0143b7eaf4be079cfb3028848ea68a420e (
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
|
[package]
authors = ["The Cortex-M Team <cortex-m@teams.rust-embedded.org>"]
name = "minitest"
publish = false
edition = "2018"
version = "0.1.0"
[features]
semihosting = ["cortex-m-semihosting", "minitest-macros/semihosting"]
rtt = ["rtt-target", "minitest-macros/rtt"]
[dependencies]
cortex-m.path = "../../cortex-m"
cortex-m-rt.path = "../../cortex-m-rt"
minitest-macros.path = "macros"
[dependencies.rtt-target]
version = "0.3.1"
optional = true
[dependencies.cortex-m-semihosting]
path = "../../cortex-m-semihosting"
optional = true
|