prepare first release
Some checks failed
ci / Check build (push) Has been cancelled
ci / Check formatting (push) Has been cancelled
ci / Check Documentation Build (push) Has been cancelled
ci / Clippy (push) Has been cancelled
ci / Check build (pull_request) Has been cancelled
ci / Check formatting (pull_request) Has been cancelled
ci / Check Documentation Build (pull_request) Has been cancelled
ci / Clippy (pull_request) Has been cancelled

This commit is contained in:
Robin Mueller
2025-09-02 20:22:39 +02:00
parent c972f17256
commit 4f082bc069

View File

@@ -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 = []