update dependency: linked_list_allocator

pull/74/head
Astro 2020-12-24 00:52:14 +01:00
parent 8432ff3e30
commit 966e43e14e
3 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -141,9 +141,9 @@ dependencies = [
[[package]]
name = "linked_list_allocator"
version = "0.8.6"
version = "0.8.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84565678e403453d1a27a0886882b3b271701e65146d972d9d7d9a4c4a0ff498"
checksum = "4e6766dff3bf932e0d1c7f1cf27c0a46008f7839f85b015a312c276a4570a399"
[[package]]
name = "log"

View File

@ -2,8 +2,8 @@ let
pkgs = import <nixpkgs> { overlays = [ (import ./nix/mozilla-overlay.nix) ]; };
rustPlatform = (import ./nix/rust-platform.nix { inherit pkgs; });
cargo-xbuild = (pkgs.cargo-xbuild.overrideAttrs(oa: { patches = oa.patches ++ [ ./xbuild_writable_lockfile.diff ]; } ));
cargoSha256Experiments = "0vcdj1cv8yjh5kjbnb7ds0441f7xhqwg08x1pr3z41kskkd9rpcz";
cargoSha256SZL = "19x24gzw002b332lr65jjqygh3a1b9qpgz3pm6xsg003calphzc4";
cargoSha256Experiments = "1c6i45ll2wwj741wsyqn4wdykcm0cg2nmn4d9v534i88rddvgxr6";
cargoSha256SZL = "0yw66kldnb9hqbsr6mfh6b4i3w9y80d2sydvgqg0bx4lr89g5zkj";
build-crate = name: crate: features: cargoSha256:
rustPlatform.buildRustPackage rec {
name = "${crate}";

View File

@ -19,7 +19,7 @@ default = ["panic_handler", "dummy_irq_handler"]
[dependencies]
r0 = "1"
compiler_builtins = "=0.1.35"
linked_list_allocator = { version = "0.8", default-features = false }
linked_list_allocator = { version = "0.8", default-features = false, features = ["const_mut_refs"] }
libregister = { path = "../libregister" }
libcortex_a9 = { path = "../libcortex_a9" }
libboard_zynq = { path = "../libboard_zynq" }