diff options
author | Brian Cully <bjc@kublai.com> | 2019-07-25 10:52:20 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-07-25 14:43:31 -0400 |
commit | 06f52526f987d6d2838fab5bb7edc2dab3fc5d6b (patch) | |
tree | 0acb18c1595bdcdd4b160a6db69b3616000e412a /app | |
parent | ee279896c3ef52ede330d9955dbdfce6c85f03a3 (diff) | |
download | samd21-demo-06f52526f987d6d2838fab5bb7edc2dab3fc5d6b.tar.gz samd21-demo-06f52526f987d6d2838fab5bb7edc2dab3fc5d6b.zip |
Remove bare-metal and cortex-m-semihosting deps.
Diffstat (limited to 'app')
-rw-r--r-- | app/Cargo.lock | 1 | ||||
-rw-r--r-- | app/Cargo.toml | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/app/Cargo.lock b/app/Cargo.lock index 92a66e8..599825f 100644 --- a/app/Cargo.lock +++ b/app/Cargo.lock @@ -250,7 +250,6 @@ name = "samd21-demo" version = "0.1.0" dependencies = [ "apa102-spi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bare-metal 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "clint 0.2.0", "cortex-m 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "cortex-m-rt 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/app/Cargo.toml b/app/Cargo.toml index 98e0642..09900f9 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -11,6 +11,8 @@ rb = { path = "../rb" } usbh = { path = "../usbh" } trinket_m0 = { path = "../../atsamd/boards/trinket_m0" } +clint = { path = "../../clint" } + panic-halt = "~0.2" smart-leds = "~0.2" smart-leds-trait = "~0.2" @@ -19,9 +21,6 @@ nb = "~0.1" cortex-m = "~0.6" cortex-m-rt = "~0.6" embedded-hal = "~0.2" -clint = { path = "../../clint" } -#cortex-m-semihosting = "~0.3" -bare-metal = "~0.2" log = "~0.4" [features] |