From c37a4c16dba6ef3e5e2515091ad30a071f9f3842 Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Thu, 16 Apr 2020 17:08:15 +1000 Subject: [PATCH] rust_lib_demo: Update package dependencies to fix a build error I'm hitting a build error: error[E0050]: method `alloc` has 2 parameters but the declaration in trait `core::alloc::AllocRef::alloc` has 3 Updating the version of linked_list_allocator fixes it. I updated heapless to while I was at it. Signed-off-by: Anton Blanchard --- rust_lib_demo/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust_lib_demo/Cargo.toml b/rust_lib_demo/Cargo.toml index bbfb8ff..b9c4be8 100644 --- a/rust_lib_demo/Cargo.toml +++ b/rust_lib_demo/Cargo.toml @@ -14,11 +14,11 @@ crate_type = ["staticlib"] panic = "abort" [dependencies] -heapless = "0.5.1" +heapless = "0.5.4" cty = "0.2" #embedded-hal = "0.2.3" #panic-halt = "0.2.0" -linked_list_allocator = "0.6" +linked_list_allocator = "0.8.2" [profile.release] panic = "abort"