Skip to content

Commit 107189b

Browse files
committed
prepare va108xx-embassy release
1 parent 872944b commit 107189b

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

Diff for: examples/rtic/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ once_cell = {version = "1", default-features = false, features = ["critical-sect
2323
ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] }
2424

2525
va108xx-hal = "0.9"
26-
vorago-reb1 = { path = "../../vorago-reb1" }
26+
vorago-reb1 = "0.7"

Diff for: examples/simple/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ version = "0.9"
2020
features = ["rt", "defmt"]
2121

2222
[dependencies.vorago-reb1]
23-
path = "../../vorago-reb1"
23+
version = "0.7"

Diff for: va108xx-embassy/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Change Log
2+
=======
3+
4+
All notable changes to this project will be documented in this file.
5+
6+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
7+
and this project adheres to [Semantic Versioning](http://semver.org/).
8+
9+
## [unreleased]

Diff for: va108xx-embassy/Cargo.toml

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "va108xx-embassy"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = ["Robin Mueller <[email protected]>"]
6+
description = "Embassy-rs support for the Vorago VA108xx family of microcontrollers"
7+
homepage = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs"
8+
repository = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs"
9+
license = "Apache-2.0"
10+
keywords = ["no-std", "hal", "cortex-m", "vorago", "va108xx"]
11+
categories = ["aerospace", "embedded", "no-std", "hardware-support"]
512

613
[dependencies]
714
critical-section = "1"
@@ -14,8 +21,7 @@ embassy-time-queue-utils = "0.1"
1421

1522
once_cell = { version = "1", default-features = false, features = ["critical-section"] }
1623

17-
[dependencies.va108xx-hal]
18-
path = "../va108xx-hal"
24+
va108xx-hal = "0.9"
1925

2026
[features]
2127
default = ["irq-oc30-oc31"]
@@ -25,3 +31,7 @@ irqs-in-lib = []
2531
irq-oc28-oc29 = ["irqs-in-lib"]
2632
irq-oc29-oc30 = ["irqs-in-lib"]
2733
irq-oc30-oc31 = ["irqs-in-lib"]
34+
35+
[package.metadata.docs.rs]
36+
all-features = true
37+
rustdoc-args = ["--generate-link-to-definition"]

Diff for: va108xx-embassy/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929
//!
3030
//! ## Examples
3131
//!
32-
//! [embassy example project](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/embassy)
32+
//! [embassy example projects](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/embassy)
3333
#![no_std]
34+
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3435
use core::cell::{Cell, RefCell};
3536
use critical_section::CriticalSection;
3637
use embassy_sync::blocking_mutex::CriticalSectionMutex as Mutex;

0 commit comments

Comments
 (0)