From d24dfb302e2770022d99a273af6c4862df2c0feb Mon Sep 17 00:00:00 2001 From: Matt Huszagh Date: Sun, 22 Nov 2020 10:32:40 -0800 Subject: [PATCH] dsp crate: drop version dependency and remove boilerplate from cargo --- .gitignore | 2 +- Cargo.toml | 2 +- dsp/Cargo.toml | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 98097d7..265b7f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -**/target +/target .gdb_history diff --git a/Cargo.toml b/Cargo.toml index 886f041..7aad310 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ embedded-hal = "0.2.4" nb = "1.0.0" asm-delay = "0.9.0" enum-iterator = "0.6.0" -dsp = { path = "dsp", version = "0.1.0" } +dsp = { path = "dsp" } [dependencies.mcp23017] git = "https://github.com/mrd0ll4r/mcp23017.git" diff --git a/dsp/Cargo.toml b/dsp/Cargo.toml index a9b7fe5..625d0f0 100644 --- a/dsp/Cargo.toml +++ b/dsp/Cargo.toml @@ -4,7 +4,5 @@ version = "0.1.0" authors = ["Robert Jördens "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] serde = { version = "1.0", features = ["derive"], default-features = false }