aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: afde2574b386fe5bdaf3a4611eeec959f0097203 (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
33
[package]
name = "atsamd-usb-host"
description = "usb-host driver support for Atmel SAMD* microcontrollers."
version = "0.2.1"
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"]
repository = "https://git.spork.org/atsamd-usb-host.git"
readme = "README.md"

[dependencies]
usb-host = "~0.1"
starb = "~0.3"
log = "~0.4"
embedded-hal = "~0.2"
atsamd-hal = "~0.7"
vcell = "~0.1"

[dev-dependencies.atsamd-hal]
version = "~0.7"
features = ["samd21e18a"]

# Need to re-export features from atsamd-hal. If there were a
# compelling reason to merge this into there, this is it.
[features]
samd21g18a = ["atsamd-hal/samd21g18a"]
samd21e18a = ["atsamd-hal/samd21e18a"]
samd51 = ["atsamd-hal/samd51"]
samd51g19a = ["atsamd-hal/samd51g19a"]
samd51j19a = ["atsamd-hal/samd51j19a"]
samd51j20a = ["atsamd-hal/samd51j20a"]