aboutsummaryrefslogtreecommitdiffstats
path: root/app/Cargo.toml
blob: fd96c1abca6ae794354fc9edd1c146ae5bcd2490 (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
[package]
name = "samd21-demo"
version = "0.1.0"
authors = ["Brian Cully <bjc@kublai.com>"]
edition = "2018"
readme = "../README.md"
license = "GPL-3.0-or-later"
license-file = "../COPYING"

[dependencies]
trinket_m0 = { path = "../../atsamd/boards/trinket_m0" }
panic-halt = "~0.2"
smart-leds = "~0.2"
smart-leds-trait = "~0.2"
apa102-spi = "~0.2" # DotStar driver.
nb = "~0.1"
cortex-m = "~0.6"
cortex-m-rt = "~0.6"
embedded-hal = "~0.2"
clint = { path = "../../clint" }
#cortex-m-semihosting = "~0.3"
bare-metal = "~0.2"
rb = { path = "../rb" }
vcell = "~0.1"

[features]
default = ["cortex-m/const-fn"]