From 3edc4c6957202867efdbe3a5acfbb535679946c2 Mon Sep 17 00:00:00 2001 From: occheung Date: Wed, 23 Sep 2020 17:28:28 +0800 Subject: [PATCH] cargo: rm arrayvec --- Cargo.lock | 7 ------- Cargo.toml | 5 ----- 2 files changed, 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0b9b117..526f0b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9,12 +9,6 @@ dependencies = [ "as-slice", ] -[[package]] -name = "arrayvec" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" - [[package]] name = "as-slice" version = "0.1.3" @@ -194,7 +188,6 @@ dependencies = [ name = "firmware" version = "0.1.0" dependencies = [ - "arrayvec", "cortex-m", "cortex-m-log", "cortex-m-rt", diff --git a/Cargo.toml b/Cargo.toml index 5ba9ff7..10d5c4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,6 @@ nb = "1.0.0" embedded-nal = "0.1.0" minimq = { git = "https://github.com/quartiq/minimq.git", branch = "master" } heapless = "0.5.6" -arrayvec = { version = "0.5.1", default-features = false, features = [ "array-sizes-33-128", "array-sizes-129-255" ] } nom = { version = "5.1.2", default-features = false, features = [] } # Logging and Panicking @@ -51,10 +50,6 @@ name = "mqtt_client" [[example]] name = "mqtt_hello_world" -# Uncomment for the allocator example. -# alloc-cortex-m = "0.3.5" - -# this lets you use `cargo fix`! [[bin]] name = "firmware" test = false