From dab577471ddbd70d47750e8dd10760276468e13d Mon Sep 17 00:00:00 2001 From: lfgtwo Date: Sat, 5 Apr 2025 18:25:41 +0800 Subject: [PATCH] chore: remove unused cortex-m dependency from embedded Cargo.toml files in bitcoin and hashes modules. --- bitcoin/embedded/Cargo.toml | 2 -- hashes/embedded/Cargo.toml | 1 - 2 files changed, 3 deletions(-) diff --git a/bitcoin/embedded/Cargo.toml b/bitcoin/embedded/Cargo.toml index 01fcd890c..8a6f7ecb9 100644 --- a/bitcoin/embedded/Cargo.toml +++ b/bitcoin/embedded/Cargo.toml @@ -10,10 +10,8 @@ version = "0.1.0" members = ["."] [dependencies] -cortex-m = "0.6.0" cortex-m-rt = "0.6.10" cortex-m-semihosting = "0.3.3" -panic-halt = "0.2.0" alloc-cortex-m = "0.4.1" bitcoin = { path="../", default-features = false, features = ["secp-lowmemory"] } diff --git a/hashes/embedded/Cargo.toml b/hashes/embedded/Cargo.toml index f6779e42d..531c98b69 100644 --- a/hashes/embedded/Cargo.toml +++ b/hashes/embedded/Cargo.toml @@ -14,7 +14,6 @@ alloc = ["alloc-cortex-m", "bitcoin_hashes/alloc"] hex = ["bitcoin_hashes/hex"] [dependencies] -cortex-m = "0.6.0" cortex-m-rt = "0.6.10" cortex-m-semihosting = "0.3.3" panic-halt = "0.2.0"