Skip to content

Commit e930dc7

Browse files
committed
Add enumset feature to documentation build
1 parent 9e7cfcf commit e930dc7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
- uses: actions-rs/cargo@v1
139139
with:
140140
command: doc
141-
args: --features=stm32f303xc,rt,stm32-usbd,can
141+
args: --features=stm32f303xc,rt,stm32-usbd,can,enumset
142142

143143
clippy:
144144
name: Clippy

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ members = [
2828
]
2929

3030
[package.metadata.docs.rs]
31-
features = ["stm32f303xc", "rt", "usb", "can"]
31+
features = ["stm32f303xc", "rt", "usb", "can", "enumset"]
3232
targets = ["thumbv7em-none-eabihf"]
3333
rustc-args = ["--cfg", "docsrs"]
3434

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
8787
Enable functions, which leverage [`enumset`](https://crates.io/crates/enumset).
8888
This is especially usefull to get all set status events at once,
89-
see for example [`serial::Serial::triggered_events()`]
89+
see for example [`crate::serial::Serial::triggered_events()`]
9090
9191
### `defmt`
9292

0 commit comments

Comments
 (0)