spin_on 0.1.1

A simple, inefficient Future executor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tasks.build-arm]
command = "cargo"
args = ["build", "--target", "thumbv7m-none-eabi"]

[tasks.readme]
install_crate = "readme"
command = "cargo"
args = ["readme", "-o", "README.md"]

[tasks.all]
dependencies = [
    "build-arm",
    "test",
    "clippy",
    "format",
    "readme",
]