diff options
author | Brian Cully <bjc@kublai.com> | 2019-08-02 22:46:48 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-08-02 22:46:48 -0400 |
commit | abd478d9425dd2d4acd5b58202b1a95b73ff217b (patch) | |
tree | 3d3cd7d896c42ee4546d8e23234f53fbcfe84d93 /bootkbd/Cargo.lock | |
parent | 024fc1503cb73e538dcd05258a6a63059029a48f (diff) | |
download | samd21-demo-abd478d9425dd2d4acd5b58202b1a95b73ff217b.tar.gz samd21-demo-abd478d9425dd2d4acd5b58202b1a95b73ff217b.zip |
Add boot keyboard driver.
Diffstat (limited to 'bootkbd/Cargo.lock')
-rw-r--r-- | bootkbd/Cargo.lock | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/bootkbd/Cargo.lock b/bootkbd/Cargo.lock new file mode 100644 index 0000000..a20b93c --- /dev/null +++ b/bootkbd/Cargo.lock @@ -0,0 +1,30 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "bootkbd" +version = "0.1.0" +dependencies = [ + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "usb-host 0.1.0", +] + +[[package]] +name = "cfg-if" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "log" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "usb-host" +version = "0.1.0" + +[metadata] +"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" +"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" |