-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
56 lines (46 loc) · 1.17 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
53
54
55
56
[package]
name = "speexdsp"
version = "0.1.1"
authors = ["Luca Barbato <[email protected]>"]
description = "Bindings for the speexdsp library"
homepage = "https://github.com/rust-av/speexdsp-rs"
repository = "https://github.com/rust-av/speexdsp-rs"
keywords = ["audio", "resampler"]
categories = ["api-bindings"]
license = "MIT"
readme = "README.md"
edition = "2018"
[features]
sys = ["speexdsp-sys"]
sse3 = [ "speexdsp-resampler/sse3" ]
avx = [ "speexdsp-resampler/avx" ]
dynnative = [ "speexdsp-resampler/dynnative" ]
[dev-dependencies]
assert_approx_eq = "1.1.0"
byteorder = "1.3"
interpolate_name = "0.2.2"
structopt = "0.3"
criterion = "0.3"
[dependencies]
speexdsp-sys = { version = "0.1.1", path = "speexdsp-sys", optional = true }
speexdsp-resampler = { version = "0.1", path = "resampler" }
[workspace]
members = ["speexdsp-sys", "resampler", "fft"]
[[bench]]
name = "resampling_c"
harness = false
[[bench]]
name = "resampling_rust"
harness = false
[[bench]]
name = "resampling_simple_rust"
harness = false
[[bench]]
name = "resampling_simple_c"
harness = false
[[bench]]
name = "resampling_simple_rust_dbl"
harness = false
[[bench]]
name = "resampling_simple_c_dbl"
harness = false