From 1ec66e826cc980cbd3182ac54630cd38e1337723 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 7 Mar 2025 16:43:29 +0100 Subject: [PATCH] use released packages --- board-tests/Cargo.toml | 2 +- bootloader/Cargo.toml | 2 +- examples/embassy/Cargo.toml | 4 ++-- examples/rtic/Cargo.toml | 4 ++-- examples/simple/Cargo.toml | 2 -- flashloader/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 9 deletions(-) diff --git a/board-tests/Cargo.toml b/board-tests/Cargo.toml index e84d728..96789e2 100644 --- a/board-tests/Cargo.toml +++ b/board-tests/Cargo.toml @@ -14,6 +14,6 @@ embedded-hal-nb = "1" embedded-io = "0.6" [dependencies.va108xx-hal] -version = "0.10.0" +version = "0.11" features = ["rt"] diff --git a/bootloader/Cargo.toml b/bootloader/Cargo.toml index 3cc4c17..1aaf734 100644 --- a/bootloader/Cargo.toml +++ b/bootloader/Cargo.toml @@ -15,7 +15,7 @@ num_enum = { version = "0.7", default-features = false } static_assertions = "1" [dependencies.va108xx-hal] -version = "0.10" +version = "0.11" [dependencies.vorago-reb1] version = "0.8" diff --git a/examples/embassy/Cargo.toml b/examples/embassy/Cargo.toml index 68ef65b..d1854fd 100644 --- a/examples/embassy/Cargo.toml +++ b/examples/embassy/Cargo.toml @@ -27,8 +27,8 @@ embassy-executor = { version = "0.7", features = [ "executor-interrupt" ]} -va108xx-hal = { version = "0.11", path = "../../va108xx-hal" } -va108xx-embassy = { version = "0.2", path = "../../va108xx-embassy" } +va108xx-hal = { version = "0.11" } +va108xx-embassy = { version = "0.2" } [features] default = ["ticks-hz-1_000", "va108xx-embassy/irq-oc30-oc31"] diff --git a/examples/rtic/Cargo.toml b/examples/rtic/Cargo.toml index d4698e3..30ec487 100644 --- a/examples/rtic/Cargo.toml +++ b/examples/rtic/Cargo.toml @@ -22,5 +22,5 @@ rtic-sync = { version = "1.3", features = ["defmt-03"] } once_cell = {version = "1", default-features = false, features = ["critical-section"]} ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] } -va108xx-hal = { version = "0.11", path = "../../va108xx-hal" } -vorago-reb1 = { version = "0.8", path = "../../vorago-reb1" } +va108xx-hal = { version = "0.11" } +vorago-reb1 = { version = "0.8" } diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index e9fceaa..1222d39 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -17,9 +17,7 @@ cortex-m-semihosting = "0.5.0" [dependencies.va108xx-hal] version = "0.11" -path = "../../va108xx-hal" features = ["rt", "defmt"] [dependencies.vorago-reb1] version = "0.8" -path = "../../vorago-reb1" diff --git a/flashloader/Cargo.toml b/flashloader/Cargo.toml index d7108ac..0f29ec8 100644 --- a/flashloader/Cargo.toml +++ b/flashloader/Cargo.toml @@ -29,7 +29,7 @@ rtic-monotonics = { version = "2", features = ["cortex-m-systick"] } rtic-sync = {version = "1", features = ["defmt-03"]} [dependencies.va108xx-hal] -version = "0.10" +version = "0.11" [dependencies.vorago-reb1] version = "0.8"