embassy/embassy-futures/Cargo.toml

28 lines
761 B
TOML
Raw Normal View History

[package]
name = "embassy-futures"
version = "0.1.0"
edition = "2021"
2022-08-30 17:29:59 +00:00
description = "no-std, no-alloc utilities for working with futures"
repository = "https://github.com/embassy-rs/embassy"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = [
"embedded",
"no-std",
"concurrency",
"asynchronous",
]
[package.metadata.embassy_docs]
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-futures-v$VERSION/embassy-futures/src/"
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-futures/src/"
2022-08-28 22:54:14 +00:00
features = ["defmt"]
target = "thumbv7em-none-eabi"
2022-08-28 22:54:14 +00:00
[package.metadata.docs.rs]
features = ["defmt"]
[dependencies]
defmt = { version = "0.3", optional = true }
log = { version = "0.4.14", optional = true }