From 22c1505cdeab7513d64098ca3187b1427a755278 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sat, 13 Nov 2021 18:10:12 +0100 Subject: [PATCH] moved some dependencies to dependencies --- Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 374d50f..9bbfefb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,11 +14,13 @@ categories = ["embedded", "no-std", "hardware-support"] cortex-m = "0.7.3" cortex-m-rt = "0.7.0" -panic-halt = "0.2" embedded-hal = "0.2.6" -panic-rtt-target = { version = "0.1", features = ["cortex-m"] } -rtt-target = { version = "0.3", features = ["cortex-m"] } [dependencies.va108xx-hal] version = "0.2.1" features = ["rt"] + +[dev-dependencies] +panic-rtt-target = { version = "0.1", features = ["cortex-m"] } +rtt-target = { version = "0.3", features = ["cortex-m"] } +panic-halt = "0.2"