-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (47 loc) · 1.12 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 = "addsynth"
version = "0.1.0"
edition = "2021"
authors = ["SolarLiner <[email protected]>"]
description = "Additive synth"
license = "GPL-3.0-or-later"
[workspace]
members = ["xtask"]
[lib]
crate-type = ["cdylib"]
[dependencies]
# Remove the `assert_process_allocs` feature to allow allocations on the audio
# thread in debug builds.
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git" }
num-complex = "0.4.2"
num-traits = "0.2.15"
rand = "0.8.5"
rand_pcg = "0.3.1"
nalgebra = "0.31.4"
# Uncomment the below line to disable the on-by-default VST3 feature to remove
# the GPL compatibility requirement
# nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", default_features = false, features = ["assert_process_allocs"] }
[dev-dependencies]
approx = "0.5.1"
criterion = "0.4.0"
[[bench]]
name = "tanh_lut"
harness = false
[profile.dev]
opt-level = 1
lto = false
debug = true
strip = "none"
[profile.test]
opt-level = 0
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
[profile.profiling]
inherits = "release"
opt-level = 3
lto = "fat"
codegen-units = 1
strip = false