# 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" 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", "matrix", ] license = "MIT/Apache-2.0" repository = "https://github.com/liebharc/basic_dsp" [lib] name = "basic_dsp" crate-type = [ "dylib", "rlib", ] path = "src/lib.rs" [[example]] name = "crosstalk" path = "examples/crosstalk.rs" [[example]] name = "approx_accuracy" path = "examples/approx_accuracy.rs" [[example]] name = "bench_tables" path = "examples/bench_tables.rs" [[example]] name = "custom_window" path = "examples/custom_window.rs" [[example]] name = "show_calibration" path = "examples/show_calibration.rs" [[example]] name = "slow_down_music" path = "examples/slow_down_music.rs" [[example]] name = "modulation" path = "examples/modulation.rs" [[test]] name = "time_freq_test" path = "tests/time_freq_test.rs" [[test]] name = "convolution_test" path = "tests/convolution_test.rs" [[test]] name = "real_test" path = "tests/real_test.rs" [[test]] name = "complex_test" path = "tests/complex_test.rs" [[test]] name = "interpolation_test" path = "tests/interpolation_test.rs" [[bench]] name = "complex_bench" path = "benches/complex_bench.rs" [[bench]] name = "time_freq_bench" path = "benches/time_freq_bench.rs" [[bench]] name = "real_bench" path = "benches/real_bench.rs" [dependencies.basic_dsp_interop] version = "0.10.2" optional = true default-features = false [dependencies.basic_dsp_matrix] version = "0.10.2" optional = true default-features = false [dependencies.basic_dsp_vector] version = "0.10.2" optional = false default-features = false [dev-dependencies.docopt] version = "^1.1.0" [dev-dependencies.hamcrest] version = "^0.1.0" [dev-dependencies.hound] version = "^3.4.0" [dev-dependencies.num] version = "^0.4" [dev-dependencies.rand] version = "^0.6.4" [features] default = [ "matrix", "std", ] interop = ["basic_dsp_interop"] matrix = ["basic_dsp_matrix"] std = ["basic_dsp_vector/std"] use_avx2 = ["basic_dsp_vector/use_avx2"] use_avx512 = ["basic_dsp_vector/use_avx512"] use_gpu = ["basic_dsp_vector/use_gpu"] use_sse2 = ["basic_dsp_vector/use_sse2"]