-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
55 lines (48 loc) · 1.19 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
[package]
name = "aubio"
version = "0.2.1"
description = "Safe bindings for aubio library to label music and sounds."
categories = ["external-ffi-bindings", "multimedia::audio"]
keywords = ["aubio", "audio", "processing", "recognition", "ffi"]
authors = ["K. <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/katyo/aubio-rs"
edition = "2018"
[dependencies.aubio-sys]
version = "0.2.1"
path = "sys"
[dependencies.log]
version = "0.4"
optional = true
[dev-dependencies.hound]
version = "3.4"
[features]
default = []
bindgen = ["aubio-sys/bindgen"]
builtin = ["aubio-sys/builtin"]
pkg-config = ["aubio-sys/pkg-config"]
shared = ["aubio-sys/shared"]
static = ["aubio-sys/static"]
fftw3 = ["aubio-sys/fftw3"]
intelipp = ["aubio-sys/intelipp"]
double = ["aubio-sys/double"]
accelerate = ["aubio-sys/accelerate"]
blas = ["aubio-sys/blas"]
atlas = ["aubio-sys/atlas"]
rustdoc = ["aubio-sys/rustdoc"]
check-size = []
[package.metadata.docs.rs]
features = ["rustdoc"]
[workspace]
members = ["sys"]
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'
incremental = false
overflow-checks = false