Skip to content

Commit

Permalink
Merge pull request #301 from knurling-rs/fix-ci
Browse files Browse the repository at this point in the history
CI: fix nightly build
  • Loading branch information
japaric authored Dec 14, 2020
2 parents 5ae5d37 + 655ca98 commit 53c51a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion firmware/qemu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ cortex-m = "0.6.0"
cortex-m-rt = "0.6.10"
cortex-m-semihosting = "0.3.3"
alloc-cortex-m = { version = "0.4.0", optional = true }
linked_list_allocator = { version = "0.8.7", optional = true }

[features]
defmt-default = [] # log at INFO, or TRACE, level and up
Expand All @@ -23,7 +24,7 @@ defmt-info = [] # log at INFO level and up
defmt-warn = [] # log at WARN level and up
defmt-error = [] # log at ERROR level
default = ["defmt-default"]
alloc = ["defmt/alloc", "alloc-cortex-m"]
alloc = ["defmt/alloc", "alloc-cortex-m", "linked_list_allocator/const_mut_refs"]

[[bin]]
name = "assert"
Expand Down

0 comments on commit 53c51a4

Please sign in to comment.