diff options
author | Brian Cully <bjc@kublai.com> | 2019-08-04 15:33:03 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-08-04 19:58:34 -0400 |
commit | e02128bd4d9d2716b55be5db3dccb18f92f01e9c (patch) | |
tree | 8f74b58be72a31a257f11022454fc186060193a3 /Cargo.toml | |
download | atsamd-usb-host-e02128bd4d9d2716b55be5db3dccb18f92f01e9c.tar.gz atsamd-usb-host-e02128bd4d9d2716b55be5db3dccb18f92f01e9c.zip |
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..9e1bdcb --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "atsamd-usb-host" +description = "usb-host driver support for Atmel SAMD* microcontrollers." +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"] +repository = "https://github.com/bjc/atsamd-21-host.git" +readme = "README.md" + +[dependencies] +usb-host = "~0.1" +starb = "~0.1" +log = "~0.4" +embedded-hal = "~0.2" +atsamd-hal = "~0.6" + +[dev-dependencies] +bootkbd = "~0.1" +clint = "~0.2" +cortex-m = "~0.6" +cortex-m-rt = "~0.6" +nb = "~0.1" +trinket_m0 = "~0.4" + +[patch.crates-io] +atsamd-hal = { git = "https://github.com/atsamd-rs/atsamd", rev = "97d55c19" } +trinket_m0 = { git = "https://github.com/atsamd-rs/atsamd", rev = "97d55c19" } |