# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "basic_dsp_vector" version = "0.10.2" authors = ["Christian Liebhardt"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Digital signal processing based on real or complex vectors in time or frequency domain." homepage = "https://github.com/liebharc/basic_dsp" documentation = "https://docs.rs/basic_dsp" readme = "README.md" keywords = [ "dsp", "vector", "interpolation", "convolution", ] license = "MIT/Apache-2.0" repository = "https://github.com/liebharc/basic_dsp" [profile.dev] codegen-units = 4 [profile.test] codegen-units = 4 [lib] name = "basic_dsp_vector" path = "src/lib.rs" [dependencies.arrayvec] version = "^0.7.0" [dependencies.clfft] version = "^0.3.3" optional = true [dependencies.crossbeam] version = "^0.8.4" optional = true [dependencies.lazy_static] version = "^1.4.0" optional = true [dependencies.linreg] version = "^0.2.0" optional = true [dependencies.num-complex] version = "^0.4" [dependencies.num-traits] version = "^0.2" [dependencies.num_cpus] version = "^1.16.0" optional = true [dependencies.ocl] version = "^0.19.7" optional = true [dependencies.rustfft] version = "^6.0.0" [features] default = ["std"] std = [ "crossbeam", "lazy_static", "num_cpus", "linreg", ] use_avx2 = ["use_simd"] use_avx512 = ["use_simd"] use_gpu = [ "ocl", "clfft", ] use_simd = [] use_sse2 = ["use_simd"]