-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (66 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace]
resolver = "2"
members = ["crates/*", "examples/*", "plugins/*", "xtask"]
[workspace.package]
version = "0.1.0"
rust-version = "1.80"
authors = ["Nathan Graule <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
homepage = "https://github.com/SolarLiner/valib"
repository = "https://github.com/SolarLiner/valib"
keywords = ["virtual-analog", "audio", "plugin", "va-modeling", "dsp"]
[workspace.dependencies]
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git" }
nih_plug_vizia = { git = "https://github.com/robbert-vdh/nih-plug.git" }
num-complex = "0.4.6"
num-traits = "0.2.18"
numeric_literals = "0.2.0"
nalgebra = "0.33.0"
profiling = "1.0.15"
# Dev dependencies
insta = { version = "1.34.0", features = ["csv", "redactions"] }
rstest = "0.22.0"
serde = "*"
plotters = "0.3.6"
[package]
name = "valib"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
[dependencies]
valib-core = { path = "crates/valib-core" }
valib-filters = { path = "crates/valib-filters", optional = true }
valib-saturators = { path = "crates/valib-saturators", optional = true }
valib-oscillators = { path = "crates/valib-oscillators", optional = true }
valib-oversample = { path = "crates/valib-oversample", optional = true }
valib-voice = { path = "crates/valib-voice", optional = true }
valib-wdf = { path = "crates/valib-wdf", optional = true }
valib-fundsp = { path = "crates/valib-fundsp", optional = true }
valib-nih-plug = { path = "crates/valib-nih-plug", optional = true }
[features]
saturators = ["dep:valib-saturators"]
filters = ["saturators", "dep:valib-filters"]
oscillators = ["dep:valib-oscillators"]
oversample = ["filters", "dep:valib-oversample"]
voice = ["dep:valib-voice"]
wdf = ["filters", "dep:valib-wdf"]
fundsp = ["dep:valib-fundsp"]
nih-plug = ["dep:valib-nih-plug"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.test]
opt-level = 0
[profile.test.package."*"]
opt-level = 3
[profile.release]
debug = true
lto = "fat"
codegen-units = 1