-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
52 lines (46 loc) · 1.29 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "basic_dsp"
version = "0.10.1"
authors = ["Christian Liebhardt"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/liebharc/basic_dsp"
repository = "https://github.com/liebharc/basic_dsp"
documentation = "https://docs.rs/basic_dsp"
keywords = ["dsp", "vector", "interpolation", "convolution", "matrix"]
edition="2021"
description = "Digital signal processing based on real or complex vectors in time or frequency domain."
readme = "README.md"
[lib]
name = "basic_dsp"
crate-type = ["dylib", "rlib"]
[dependencies]
[dependencies.basic_dsp_vector]
optional = false
default-features = false
path = "vector"
version = "0.10.1"
[dependencies.basic_dsp_matrix]
optional = true
default-features = false
path = "matrix"
version = "0.10.1"
[dependencies.basic_dsp_interop]
optional = true
default-features = false
path = "interop"
version = "0.10.1"
[dev-dependencies]
hamcrest = "^0.1.0"
rand = "^0.6.4"
hound = "^3.4.0"
docopt = "^1.1.0"
num = "^0.4"
[features]
use_avx512 = ["basic_dsp_vector/use_avx512"]
use_avx2 = ["basic_dsp_vector/use_avx2"]
use_sse2 = ["basic_dsp_vector/use_sse2"]
use_gpu = ["basic_dsp_vector/use_gpu"]
std = ["basic_dsp_vector/std"]
matrix = ["basic_dsp_matrix"]
interop= ["basic_dsp_interop"]
default = ["matrix", "std"]