From 4f082bc069de4b0b60e95f9cb366a91cf5c75eae Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 2 Sep 2025 20:22:39 +0200 Subject: [PATCH] prepare first release --- Cargo.toml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0580101..f281e62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0" [dependencies] cortex-m = { version = "0.7" } cfg-if = "1" -derive-mmio = { git = "https://github.com/knurling-rs/derive-mmio.git", version = "0.6" } +derive-mmio = "0.6" bitbybit = "1.3" arbitrary-int = "2" static_assertions = "1.1" @@ -32,7 +32,9 @@ va416xx = { version = "0.4", default-features = false, optional = true } embassy-sync = "0.7" embassy-time-driver = "0.2" embassy-time-queue-utils = "0.3" -once_cell = { version = "1", default-features = false, features = ["critical-section"] } +once_cell = { version = "1", default-features = false, features = [ + "critical-section", +] } [target.thumbv6m-none-eabi.dependencies] portable-atomic = { version = "1", features = ["unsafe-assume-single-core"] } @@ -45,7 +47,12 @@ portable-atomic = "1" vor1x = ["_family-selected", "dep:va108xx"] vor4x = ["_family-selected", "dep:va416xx"] va41628 = [] -defmt = ["dep:defmt", "arbitrary-int/defmt", "fugit/defmt", "embedded-hal/defmt-03"] +defmt = [ + "dep:defmt", + "arbitrary-int/defmt", + "fugit/defmt", + "embedded-hal/defmt-03", +] _family-selected = []