From da3ef096430cdca79087b2c0db255886707a48c0 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Tue, 21 Mar 2023 18:11:31 +0100 Subject: [PATCH] rename package --- down-the-stack/solutions/Cargo.toml | 2 +- down-the-stack/solutions/src/bin/uarte_enable.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/down-the-stack/solutions/Cargo.toml b/down-the-stack/solutions/Cargo.toml index 06950f5..b728c4e 100644 --- a/down-the-stack/solutions/Cargo.toml +++ b/down-the-stack/solutions/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Tanks Transfeld "] edition = "2018" license = "MIT OR Apache-2.0" -name = "uarte_enable_solution" +name = "solutions" version = "0.0.0" [dependencies] diff --git a/down-the-stack/solutions/src/bin/uarte_enable.rs b/down-the-stack/solutions/src/bin/uarte_enable.rs index 010d0d4..794235d 100644 --- a/down-the-stack/solutions/src/bin/uarte_enable.rs +++ b/down-the-stack/solutions/src/bin/uarte_enable.rs @@ -6,7 +6,7 @@ use cortex_m_rt::entry; use dk_pac::UARTE0; // this imports `down-the-stack/apps/lib.rs` to retrieve our global logger + panicking-behavior -use uarte_enable_solution as _; +use solutions as _; use defmt; use defmt_rtt as _; // global logger