diff --git a/examples/rtic/Cargo.toml b/examples/rtic/Cargo.toml index 1a4fc06..9070a3b 100644 --- a/examples/rtic/Cargo.toml +++ b/examples/rtic/Cargo.toml @@ -23,4 +23,4 @@ once_cell = {version = "1", default-features = false, features = ["critical-sect ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] } va108xx-hal = "0.9" -vorago-reb1 = { path = "../../vorago-reb1" } +vorago-reb1 = "0.7" diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 4437dd3..05fc339 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -20,4 +20,4 @@ version = "0.9" features = ["rt", "defmt"] [dependencies.vorago-reb1] -path = "../../vorago-reb1" +version = "0.7" diff --git a/va108xx-embassy/CHANGELOG.md b/va108xx-embassy/CHANGELOG.md new file mode 100644 index 0000000..d2018c5 --- /dev/null +++ b/va108xx-embassy/CHANGELOG.md @@ -0,0 +1,9 @@ +Change Log +======= + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [unreleased] diff --git a/va108xx-embassy/Cargo.toml b/va108xx-embassy/Cargo.toml index 68a7dcb..2b11220 100644 --- a/va108xx-embassy/Cargo.toml +++ b/va108xx-embassy/Cargo.toml @@ -14,8 +14,7 @@ embassy-time-queue-utils = "0.1" once_cell = { version = "1", default-features = false, features = ["critical-section"] } -[dependencies.va108xx-hal] -path = "../va108xx-hal" +va108xx-hal = "0.9" [features] default = ["irq-oc30-oc31"] diff --git a/va108xx-embassy/src/lib.rs b/va108xx-embassy/src/lib.rs index 6816f00..d2b03bb 100644 --- a/va108xx-embassy/src/lib.rs +++ b/va108xx-embassy/src/lib.rs @@ -29,7 +29,7 @@ //! //! ## Examples //! -//! [embassy example project](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/embassy) +//! [embassy example projects](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/embassy) #![no_std] use core::cell::{Cell, RefCell}; use critical_section::CriticalSection;