[package] name = "aether_primitives" version = "0.1.0" authors = ["Felix Girke "] keywords = ["sdr","helpers","radio","complex-numbers","signal"] description = "Helpers for common SDR and signal generation operations" license = "MPL-2.0" license-file = "LICENSE" repository = "https://github.com/razorheadfx/aether_primitives" homepage = "https://github.com/razorheadfx/aether_primitives" readme = "README.md" edition = "2018" [dependencies] # these are unspecified so whoever wants to use it can specify their # own version number as cargo will prefer to use that version num-traits = ">=0.0.0" num-complex = ">=0.0.0" chfft = { optional = true, version = "0.2.4" } [dev-dependencies] criterion = "0.2" [[bench]] name = "benches" harness = false [features] default = [] fft_chfft = ["chfft", "fft"] # enables fft ops on vecops fft = []