aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2022-12-31 14:40:05 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2022-12-31 14:40:05 +0100
commit01a22905e358a4f7e01021cfd5aa3702458418a2 (patch)
tree8d1c0b66e0fe9fe8ea85ba27dce5aa04c8d4dd87
parentba0aeee005d5fdaaab59cd7c099a237f51eddc86 (diff)
downloadfl2k_ampliphase-01a22905e358a4f7e01021cfd5aa3702458418a2.tar.gz
fl2k_ampliphase-01a22905e358a4f7e01021cfd5aa3702458418a2.tar.bz2
fl2k_ampliphase-01a22905e358a4f7e01021cfd5aa3702458418a2.zip
Remove unused num-complex
-rw-r--r--Cargo.lock25
-rw-r--r--Cargo.toml1
-rw-r--r--src/main.rs1
3 files changed, 0 insertions, 27 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 790f16b..13f116a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,12 +3,6 @@
version = 3
[[package]]
-name = "autocfg"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-
-[[package]]
name = "bindgen"
version = "0.63.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -81,7 +75,6 @@ dependencies = [
"bindgen",
"cc",
"getopts",
- "num-complex",
]
[[package]]
@@ -159,24 +152,6 @@ dependencies = [
]
[[package]]
-name = "num-complex"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19"
-dependencies = [
- "num-traits",
-]
-
-[[package]]
-name = "num-traits"
-version = "0.2.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
name = "once_cell"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index 78c9ac1..1da5201 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,6 @@ edition = "2021"
[dependencies]
getopts = "0.2"
-num-complex = "0.4"
[build-dependencies]
bindgen = "0.63"
diff --git a/src/main.rs b/src/main.rs
index 4bdb879..3933ed4 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,7 +27,6 @@ use std::io::{prelude::*, BufReader, BufWriter};
use std::fs::File;
use std::sync::mpsc;
use getopts::Options;
-use num_complex::Complex;
//mod fl2k;