summaryrefslogtreecommitdiffstats
path: root/usb/Cargo.toml
blob: bfa2094b6484bb383564b3afb32d28260870e864 (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
28
29
30
[package]
name = "usb"
description = "Send boot keyboard reports over I²C."
version = "0.1.0"
authors = ["Brian Cully <bjc@kublai.com>"]
edition = "2018"
license = "GPL-3.0-or-later"
repository = "https://github.com/bjc/bleusb.git"

[dependencies]
embedded-hal = "0.2"
log = "0.4"
starb = "0.3"
clint = "0.2"
nb = "0.1"
cortex-m = "0.6"
cortex-m-rt = "0.6"
smart-leds-trait = "0.2"
smart-leds = "0.2"
apa102-spi = "0.2"
usb-host = "0.1"
bootkbd = "0.2"
atsamd-usb-host = "0.1"
trinket_m0 = {version = "0.5", optional = true }
feather_m0 = {version = "0.5", optional = true }

[features]
default = ["trinket-m0"]
trinket-m0 = ["trinket_m0", "atsamd-usb-host/samd21e18a"]
feather-m0 = ["feather_m0", "atsamd-usb-host/samd21g18a"]