diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2019-04-22 22:21:46 +0200 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2019-05-01 21:32:00 +0200 |
| commit | ccd7f4586b63841c4bac51f24dc38570c9f89726 (patch) | |
| tree | c0839773ab356bac429cbc69e4f6b5654d162d6e /Cargo.toml | |
| parent | 485601245ba80488193adda7dc6d5bdef337384a (diff) | |
book: indirection for faster message passing
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -26,6 +26,12 @@ name = "periodic" required-features = ["timer-queue"] [[example]] +name = "pool" +# this example doesn't need this feature but only works on ARMv7-M +# specifying the feature here avoids compiling this for ARMv6-M +required-features = ["timer-queue"] + +[[example]] name = "schedule" required-features = ["timer-queue"] @@ -39,8 +45,8 @@ cortex-m-rt = "0.6.7" cortex-m-rtfm-macros = { path = "macros", version = "0.5.0-alpha.1" } [dependencies.heapless] -features = ["smaller-atomics"] -version = "0.4.1" +features = ["smaller-atomics", "min-const-fn"] +version = "0.4.3" [dev-dependencies] cortex-m-semihosting = "0.3.2" |
