summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 8bd643910859637123f00ebb6a835f5fc46b1df9 (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
31
32
[package]
name = "bleusb"
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"
#atsamd-hal = "0.6"
trinket_m0 = "0.4"
log = "0.4"
starb = "0.1"
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.1"
atsamd-usb-host = { path = "../usbh/atsamd-usb-host" }

[patch.crates-io]
#atsamd-hal = { path = "../usbh/atsamd/hal" }
trinket_m0 = { path = "../usbh/atsamd/boards/trinket_m0" }

[features]
default = ["atsamd-usb-host/samd21e18a"]