From 850ad1eb92dee3a33016ceb65d07a75db5962e36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 22 Oct 2024 16:21:59 +0200 Subject: [PATCH] build(deps): remove unused `riscv` dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- Cargo.lock | 23 ----------------------- Cargo.toml | 1 - 2 files changed, 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec989eb7..4d8ed762 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,12 +178,6 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" -[[package]] -name = "critical-section" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7059fff8937831a9ae6f0fe4d658ffabf58f2ca96aa9dec1c889f936f705f216" - [[package]] name = "crossbeam-deque" version = "0.8.5" @@ -224,12 +218,6 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" -[[package]] -name = "embedded-hal" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "361a90feb7004eca4019fb28352a9465666b24f840f5c3cddf0ff13920590b89" - [[package]] name = "fdt" version = "0.1.5" @@ -299,7 +287,6 @@ dependencies = [ "naked-function", "one-shot-mutex", "qemu-exit", - "riscv", "sbi-rt", "sptr", "take-static", @@ -500,16 +487,6 @@ dependencies = [ "crossbeam-utils", ] -[[package]] -name = "riscv" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f5c1b8bf41ea746266cdee443d1d1e9125c86ce1447e1a2615abd34330d33a9" -dependencies = [ - "critical-section", - "embedded-hal", -] - [[package]] name = "rustversion" version = "1.0.17" diff --git a/Cargo.toml b/Cargo.toml index 5fb98903..43f1b95b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,6 @@ qemu-exit = "3" [target.'cfg(target_arch = "riscv64")'.dependencies] fdt = "0.1" naked-function = "0.1" -riscv = "0.11" sbi-rt = "0.0.3" sptr = "0.3"