diff options
author | 2019-05-21 15:22:25 +0200 | |
---|---|---|
committer | 2019-05-21 15:22:25 +0200 | |
commit | 30d6327001e35476f306b6cd8185396293b41f1d (patch) | |
tree | 5e41827d30b0038120820c0b5e0d4d84d1f70940 /macros/Cargo.toml | |
parent | eb528ef921c1d30d03b533b788a3af302bffb1f9 (diff) | |
download | rtic-30d6327001e35476f306b6cd8185396293b41f1d.tar.gz rtic-30d6327001e35476f306b6cd8185396293b41f1d.tar.zst rtic-30d6327001e35476f306b6cd8185396293b41f1d.zip |
bump heapless dependency to v0.5.0; remove "nightly" feature
with the upcoming version of heapless we are able to initialize all internal
queues in const context removing the need for late initialization
this commit also removes the "nightly" feature because all the optimization
provided by it are now enabled by default
Diffstat (limited to 'macros/Cargo.toml')
-rw-r--r-- | macros/Cargo.toml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 3771869c..df20f8c0 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -23,5 +23,4 @@ features = ["extra-traits", "full"] version = "0.15.23" [features] -timer-queue = [] -nightly = []
\ No newline at end of file +timer-queue = []
\ No newline at end of file |