aboutsummaryrefslogtreecommitdiffstats
path: root/samd21-host/Cargo.toml
blob: 3fb821b702995424794c121f5217033af84b3ccb (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
[package]
name = "samd21-host"
version = "0.1.0"
authors = ["Brian Cully <bjc@kublai.com>"]
edition = "2018"
license = "LGPL-3.0-or-later"
categories = ["no-std", "embedded", "hardware-support"]
keywords = ["usb", "usb-host", "hal", "peripheral"]

[dependencies]
usb-host = { path = "../usb-host" }
rb = { path = "../rb" }
log = "~0.4"
embedded-hal = "~0.2"
atsamd-hal = { path = "../../atsamd/hal" }

[dev-dependencies]
bootkbd = { path = "../bootkbd" }
clint = { path = "../../clint" }
cortex-m = "~0.6"
cortex-m-rt = "~0.6"
nb = "~0.1"
trinket_m0 = { path = "../../atsamd/boards/trinket_m0" }

[features]
default = ["atsamd-hal/samd21e18a"]