blob: aff957aa38d0e4f81dfba15d704f147aa14c268e (
plain)
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
|
[package]
name = "retain"
version = "0.1.0-pre2"
authors = [ "haemolacriaa" ]
description = "Retain is a real-time audio plugin that retains the nth largest magnitude frequencies in a signal"
edition = "2024"
repository = "https://git.haemolacriaa.com/retain"
publish = false
[lib]
crate-type = ["rlib", "cdylib"]
[dependencies]
nice-plug = {
path = "../nice-plug/crates/nice-plug",
version = "0.1.0",
features = ["assert_process_allocs"]
}
nice-plug-egui = { path = "../nice-plug/crates/nice-plug-egui", version = "0.1.5" }
realfft = { version = "3.5.0", features = ["avx", "neon", "sse"] }
num-complex = "0.4.6"
rustc-hash = "2.1.2"
rtrb = "0.3.4"
egui = "0.34.3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
|