mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
usb-dfu: add docs metadata.
This commit is contained in:
parent
73cfa8f8a9
commit
adb024bdbe
2
.github/ci/doc.sh
vendored
2
.github/ci/doc.sh
vendored
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
## on push branch=main
|
## on push branch=main
|
||||||
|
|
||||||
set -euo pipefail
|
set -euxo pipefail
|
||||||
|
|
||||||
export RUSTUP_HOME=/ci/cache/rustup
|
export RUSTUP_HOME=/ci/cache/rustup
|
||||||
export CARGO_HOME=/ci/cache/cargo
|
export CARGO_HOME=/ci/cache/cargo
|
||||||
|
@ -12,14 +12,24 @@ categories = [
|
|||||||
"asynchronous"
|
"asynchronous"
|
||||||
]
|
]
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
[package.metadata.embassy_docs]
|
||||||
|
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-usb-v$VERSION/embassy-usb-dfu/src/"
|
||||||
|
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-usb-dfu/src/"
|
||||||
|
features = ["defmt", "cortex-m"]
|
||||||
|
target = "thumbv7em-none-eabi"
|
||||||
|
flavors = [
|
||||||
|
{ name = "dfu", features = [ "dfu" ] },
|
||||||
|
{ name = "application", features = [ "application" ] },
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.metadata.docs.rs]
|
||||||
|
features = ["defmt", "cortex-m", "dfu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "2.4.1"
|
bitflags = "2.4.1"
|
||||||
cortex-m = { version = "0.7.7", features = ["inline-asm"], optional = true }
|
cortex-m = { version = "0.7.7", features = ["inline-asm"], optional = true }
|
||||||
defmt = { version = "0.3.5", optional = true }
|
defmt = { version = "0.3.5", optional = true }
|
||||||
embassy-boot = { version = "0.2.0", path = "../embassy-boot" }
|
embassy-boot = { version = "0.2.0", path = "../embassy-boot" }
|
||||||
# embassy-embedded-hal = { version = "0.1.0", path = "../embassy-embedded-hal" }
|
|
||||||
embassy-futures = { version = "0.1.1", path = "../embassy-futures" }
|
embassy-futures = { version = "0.1.1", path = "../embassy-futures" }
|
||||||
embassy-sync = { version = "0.5.0", path = "../embassy-sync" }
|
embassy-sync = { version = "0.5.0", path = "../embassy-sync" }
|
||||||
embassy-time = { version = "0.3.0", path = "../embassy-time" }
|
embassy-time = { version = "0.3.0", path = "../embassy-time" }
|
||||||
|
Loading…
Reference in New Issue
Block a user