mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
27 lines
752 B
TOML
27 lines
752 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "embassy-boot"
|
|
version = "0.1.0"
|
|
description = "Bootloader using Embassy"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[package.metadata.embassy_docs]
|
|
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-boot-v$VERSION/embassy-boot/boot/src/"
|
|
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-boot/boot/src/"
|
|
target = "thumbv7em-none-eabi"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
defmt = { version = "0.3", optional = true }
|
|
log = { version = "0.4", optional = true }
|
|
embassy-sync = { version = "0.1.0", path = "../../embassy-sync" }
|
|
embedded-storage = "0.3.0"
|
|
embedded-storage-async = "0.3.0"
|
|
|
|
[dev-dependencies]
|
|
log = "0.4"
|
|
env_logger = "0.9"
|
|
rand = "0.8"
|
|
futures = { version = "0.3", features = ["executor"] }
|