From e98677c22a5e94a9545982b63273ddb295b70321 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Tue, 20 Feb 2024 21:53:42 +0100 Subject: [PATCH] cleanup: fix "imported redundantly" warnings --- src/riot-rs-boards/nrf52840dk/src/lib.rs | 2 -- src/riot-rs-core/build.rs | 1 - 2 files changed, 3 deletions(-) diff --git a/src/riot-rs-boards/nrf52840dk/src/lib.rs b/src/riot-rs-boards/nrf52840dk/src/lib.rs index a26e9fdfb..968933544 100644 --- a/src/riot-rs-boards/nrf52840dk/src/lib.rs +++ b/src/riot-rs-boards/nrf52840dk/src/lib.rs @@ -1,7 +1,5 @@ #![no_std] -use nrf52; - use riot_rs_rt::debug::println; pub fn init() { diff --git a/src/riot-rs-core/build.rs b/src/riot-rs-core/build.rs index ca3fe9b7a..a02078046 100644 --- a/src/riot-rs-core/build.rs +++ b/src/riot-rs-core/build.rs @@ -1,4 +1,3 @@ -use cbindgen; use std::env; use std::fs; use std::path::Path;