From 1ba587ccf9eefe9a7c2d5b3432671ee737ae3c4a Mon Sep 17 00:00:00 2001 From: Astro Date: Tue, 17 Dec 2019 00:30:02 +0100 Subject: [PATCH] remove dependency compiler_builtins no longer required. --- Cargo.lock | 7 ------- Cargo.toml | 1 - 2 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb5f3416..da258c55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15,11 +15,6 @@ name = "byteorder" version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "compiler_builtins" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "linked_list_allocator" version = "0.6.4" @@ -63,7 +58,6 @@ name = "zc706" version = "0.0.0" dependencies = [ "bit_field 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "compiler_builtins 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "linked_list_allocator 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "smoltcp 0.5.0 (git+https://github.com/m-labs/smoltcp.git?rev=8eb01aca364aefe5f823d68d552d62c76c9be4a3)", @@ -75,7 +69,6 @@ dependencies = [ "checksum bit_field 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a165d606cf084741d4ac3a28fb6e9b1eb0bd31f6cd999098cfddb0b2ab381dc0" "checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" -"checksum compiler_builtins 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" = "33494057c5a6c59def611805f1f8cd0ea485dbfd58126e9a05135f400634c527" "checksum linked_list_allocator 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "47314ec1d29aa869ee7cb5a5be57be9b1055c56567d59c3fb6689926743e0bea" "checksum managed 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fdcec5e97041c7f0f1c5b7d93f12e57293c831c646f4cc7a5db59460c7ea8de6" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" diff --git a/Cargo.toml b/Cargo.toml index b4f16901..1bd2ccce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,6 @@ r0 = "0.2" vcell = "0.1" volatile-register = "0.2" bit_field = "0.10" -compiler_builtins = { version = "~0.1", default-features = false, features = ["mem", "no-lang-items"]} linked_list_allocator = { version = "0.6", default-features = false } [dependencies.smoltcp]