forked from nrf-rs/microbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 888 Bytes
/
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
[package]
authors = ["Daniel Egger <[email protected]>", "Michael Droogleever <[email protected]>"]
categories = [
"hardware-support",
"embedded",
"no-std",
]
description = "Board support crate for the BBC Micro:bit"
documentation = "https://docs.rs/microbit"
keywords = [
"arm",
"cortex-m",
"nrf51",
]
license = "0BSD"
name = "microbit"
repository = "https://github.com/therealprof/microbit"
version = "0.5.4"
[dependencies]
cortex-m = "0.5.2"
cortex-m-rt = "0.5.1"
nb = "0.1.1"
panic-abort = "0.2.0"
[dev-dependencies]
cortex-m-semihosting = "0.3.0"
numtoa = "0.0.7"
dcf77 = "0.1.0"
mag3110 = "0.1.3"
[dependencies.nrf51-hal]
features = ["rt"]
version = "0.5.1"
[dev-dependencies.rand]
default-features = false
version = "0.5.3"
[features]
default = ["rt"]
rt = []
[profile.dev]
debug = true
[profile.release]
debug = true
lto = true
opt-level = "s"