summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 8fea9d783587a44fa6f762482526b561a1ca6093 (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
32
33
34
35
36
37
38
39
40
[package]
name = "retain"
version = "0.1.0"
edition = "2024"

[lib]
crate-type = ["rlib", "cdylib"]


[dependencies]
clack-plugin = { path = "../clack/plugin" }
clack-extensions = { path = "../clack/extensions", features = [
    "audio-ports",
    "clack-plugin",
    "gui",
    "note-ports",
    "params",
    "raw-window-handle_05",
    "state",
	"latency",
] }
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "237d323c729f3aa99476ba3efa50129c5e86cad3", version = "0.1.0" }
egui-baseview = { git = "https://codeberg.org/BillyDM/egui-baseview.git", version = "0.7.0" }

# to serialize parameters and save the plugin state
prost = "0.14.3"
prost-build = "0.14.3"
realfft = { version = "3.5.0", features = ["avx", "neon", "sse"] }
hashbrown = "0.17.1"
num-complex = "0.4.6"

[build-dependencies]
prost-build = "0.14.3"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true