Skip to content

Commit be10b2e

Browse files
committed
Add a futures executor and example
1 parent a5c49be commit be10b2e

File tree

11 files changed

+452
-0
lines changed

11 files changed

+452
-0
lines changed

rust/sysroot-stage2/Cargo.lock

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/sysroot-stage2/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ path = "../zephyr-logger"
1515
[dependencies.zephyr-uart-buffered]
1616
path = "../zephyr-uart-buffered"
1717

18+
[dependencies.zephyr-futures]
19+
path = "../zephyr-futures"
20+
1821
[profile.release]
1922
lto = true
2023
panic = "abort"

rust/zephyr-futures/Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "zephyr-futures"
3+
version = "0.1.0"
4+
authors = ["Tyler Hall <tylerwhall@gmail.com>"]
5+
edition = "2018"
6+
7+
[dependencies]
8+
zephyr = { path = "../zephyr" }
9+
log = "0.4"
10+
futures-preview = "=0.3.0-alpha.17"
11+
futures-util-preview = "=0.3.0-alpha.17"

0 commit comments

Comments
 (0)