Fix linked_list_allocator version to fix build

They released version 0.8.7 today which breaks our assumption that Heap::empty
is callable in const context.
This commit is contained in:
Julien Cretin
2020-12-10 16:14:17 +01:00
parent ecbd3a036a
commit d4b20a5acc

View File

@@ -11,7 +11,7 @@ edition = "2018"
[dependencies]
libtock_core = { path = "../../third_party/libtock-rs/core", default-features = false, features = ["alloc_init", "custom_panic_handler", "custom_alloc_error_handler"] }
libtock_drivers = { path = "../libtock-drivers" }
linked_list_allocator = { version = "0.8.1", default-features = false }
linked_list_allocator = { version = "=0.8.1", default-features = false }
[features]
debug_allocations = []