-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (32 loc) · 933 Bytes
/
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
[package]
name = "Interleaf"
version = "0.1.0"
edition = "2021"
authors = ["Ardura <azviscarra@gmail.com>"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/ardura"
description = "An Equalizer"
[workspace]
members = ["xtask"]
[lib]
crate-type = ["cdylib","lib"]
[dependencies]
atomic_float = "0.1"
lazy_static = "1.4.0"
# 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", rev = "5f4058d1640c68543f64f4f19ed204d4305c2ee8", features = ["assert_process_allocs"] }
nih_plug_egui = { git = "https://github.com/robbert-vdh/nih-plug.git", rev = "5f4058d1640c68543f64f4f19ed204d4305c2ee8"}
once_cell = "1.18.0"
parking_lot = "0.12.1"
[profile.release]
opt-level = 3
debug = false
lto = "fat"
strip = "symbols"
[profile.profiling]
inherits = "release"
lto = "off"
opt-level = 0
debug = true
strip = "none"