-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (42 loc) · 1.07 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
[package]
name = "Subhoofer"
version = "2.2.2"
edition = "2021"
authors = ["Ardura <azviscarra@gmail.com>"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/ardura"
description = "Harmonic and Subharmonic Bass Enhancement"
[workspace]
members = ["xtask"]
[lib]
crate-type = ["cdylib","lib"]
[dependencies]
atomic_float = "0.1"
color-backtrace = "0.6.1"
lazy_static = "1.4.0"
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", rev = "bb274976ca138289436b0bfa209b2c8c13244225", features = ["assert_process_allocs"] }
nih_plug_egui = { git = "https://github.com/robbert-vdh/nih-plug.git", rev = "bb274976ca138289436b0bfa209b2c8c13244225"}
once_cell = "1.18.0"
rand = "0.8.5"
[profile.release]
opt-level = 3
debug = false
split-debuginfo = '...' # Platform-specific.
strip = "none"
debug-assertions = false
overflow-checks = false
lto = false
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false
#opt-level = 3
#debug = false
#lto = "fat"
#strip = "symbols"
[profile.profiling]
inherits = "release"
lto = "off"
opt-level = 0
debug = true
strip = "none"