From 74e7be6cb611f6e3cf1e8f2b24f42d54f25e92e4 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Fri, 19 Apr 2024 09:58:36 +0200 Subject: [PATCH] cleanup: drop use of patched nrf-pacs --- Cargo.lock | 12 ++++++------ Cargo.toml | 5 ----- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb3123972..0ce260c23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1784,11 +1784,11 @@ dependencies = [ [[package]] name = "nrf51-pac" version = "0.12.2" -source = "git+https://github.com/kaspar030/nrf-pacs?branch=riot-rs#58ec00b7bd1691b2fd6f002705d2ffbe7d3204e0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "137f187dc6ee482e27312086bd3c3a83e1c273512782cf131a61957f72fc4219" dependencies = [ "cortex-m", "cortex-m-rt", - "critical-section", "vcell", ] @@ -1850,11 +1850,11 @@ dependencies = [ [[package]] name = "nrf52832-pac" version = "0.12.2" -source = "git+https://github.com/kaspar030/nrf-pacs?branch=riot-rs#58ec00b7bd1691b2fd6f002705d2ffbe7d3204e0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0242b685c9c15648fb803e155628f42ace457478b2cb930868f40cae2db925e0" dependencies = [ "cortex-m", "cortex-m-rt", - "critical-section", "vcell", ] @@ -1883,11 +1883,11 @@ dependencies = [ [[package]] name = "nrf52840-pac" version = "0.12.2" -source = "git+https://github.com/kaspar030/nrf-pacs?branch=riot-rs#58ec00b7bd1691b2fd6f002705d2ffbe7d3204e0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30713f36f1be02e5bc9abefa30eae4a1f943d810f199d4923d3ad062d1be1b3d" dependencies = [ "cortex-m", "cortex-m-rt", - "critical-section", "vcell", ] diff --git a/Cargo.toml b/Cargo.toml index 0dc565fc9..c16f6a153 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,11 +84,6 @@ opt-level = "s" opt-level = 3 [patch.crates-io] -# these are patched to work with critical-section -nrf51-pac = { git = "https://github.com/kaspar030/nrf-pacs", branch = "riot-rs" } -nrf52832-pac = { git = "https://github.com/kaspar030/nrf-pacs", branch = "riot-rs" } -nrf52840-pac = { git = "https://github.com/kaspar030/nrf-pacs", branch = "riot-rs" } - # riot-rs embassy fork embassy-executor = { git = "https://github.com/kaspar030/embassy", branch = "for-riot-rs-100424" } embassy-hal-internal = { git = "https://github.com/kaspar030/embassy", branch = "for-riot-rs-100424" }