| 1 | [package] |
| 2 | name = "embassy-futures" |
| 3 | version = "0.1.1" |
| 4 | edition = "2021" |
| 5 | description = "no-std, no-alloc utilities for working with futures" |
| 6 | repository = "https://github.com/embassy-rs/embassy" |
| 7 | readme = "README.md" |
| 8 | license = "MIT OR Apache-2.0" |
| 9 | categories = [ |
| 10 | "embedded" , |
| 11 | "no-std" , |
| 12 | "concurrency" , |
| 13 | "asynchronous" , |
| 14 | ] |
| 15 | |
| 16 | [package.metadata.embassy_docs] |
| 17 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-futures-v$VERSION/embassy-futures/src/" |
| 18 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-futures/src/" |
| 19 | features = ["defmt" ] |
| 20 | target = "thumbv7em-none-eabi" |
| 21 | |
| 22 | [package.metadata.docs.rs] |
| 23 | features = ["defmt" ] |
| 24 | |
| 25 | [dependencies] |
| 26 | defmt = { version = "0.3" , optional = true } |
| 27 | log = { version = "0.4.14" , optional = true } |
| 28 | |