diff --git a/examples/embassy/Cargo.toml b/examples/embassy/Cargo.toml index d2b81b8..cdf169a 100644 --- a/examples/embassy/Cargo.toml +++ b/examples/embassy/Cargo.toml @@ -27,7 +27,7 @@ embassy-executor = { version = "0.9", features = [ ]} va108xx-hal = { version = "0.12", path = "../../va108xx-hal", features = ["defmt"] } -va108xx-embassy = { version = "0.2", path = "../../va108xx-embassy" } +va108xx-embassy = { version = "0.3", path = "../../va108xx-embassy" } [features] default = ["ticks-hz-1_000", "va108xx-embassy/irq-oc30-oc31"] diff --git a/va108xx-embassy/Cargo.toml b/va108xx-embassy/Cargo.toml index 8069124..033b6eb 100644 --- a/va108xx-embassy/Cargo.toml +++ b/va108xx-embassy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "va108xx-embassy" -version = "0.2.1" +version = "0.3.0" edition = "2021" authors = ["Robin Mueller "] description = "Embassy-rs support for the Vorago VA108xx family of microcontrollers" @@ -11,7 +11,7 @@ keywords = ["no-std", "hal", "cortex-m", "vorago", "va108xx"] categories = ["aerospace", "embedded", "no-std", "hardware-support"] [dependencies] -vorago-shared-hal = { git = "https://egit.irs.uni-stuttgart.de/rust/vorago-shared-hal.git", features = ["vor1x"] } +vorago-shared-hal = { version = "0.2", features = ["vor1x"] } va108xx-hal = { path = "../va108xx-hal" } [features] diff --git a/va108xx-hal/Cargo.toml b/va108xx-hal/Cargo.toml index 2f866b4..c04bbe2 100644 --- a/va108xx-hal/Cargo.toml +++ b/va108xx-hal/Cargo.toml @@ -12,7 +12,7 @@ categories = ["aerospace", "embedded", "no-std", "hardware-support"] [dependencies] cortex-m = { version = "0.7", features = ["critical-section-single-core"]} -vorago-shared-hal = { git = "https://egit.irs.uni-stuttgart.de/rust/vorago-shared-hal.git", features = ["vor1x"] } +vorago-shared-hal = { version = "0.2", features = ["vor1x"] } fugit = "0.3" thiserror = { version = "2", default-features = false } va108xx = { version = "0.6", default-features = false, features = ["critical-section", "defmt"] } diff --git a/vorago-reb1/Cargo.toml b/vorago-reb1/Cargo.toml index faacafd..5e720f6 100644 --- a/vorago-reb1/Cargo.toml +++ b/vorago-reb1/Cargo.toml @@ -19,7 +19,7 @@ bitbybit = "1.3" arbitrary-int = "2" max116xx-10bit = "0.3" -va108xx-hal = { version = ">=0.10, <=0.12", path = "../va108xx-hal", features = ["rt"] } +va108xx-hal = { version = "0.12", path = "../va108xx-hal", features = ["rt"] } [features] rt = ["va108xx-hal/rt"]