summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 942d07535676975772f23a38a7193ee0c9755aa5 (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-pre"
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",
] }
egui-baseview = { git = "https://codeberg.org/RustAudio/egui-baseview.git", version = "0.2.7" }

# for calculation
realfft = { version = "3.5.0", features = ["avx", "neon", "sse"] }
num-complex = "0.4.6"
rustc-hash = "2.1.2"
atomic_float = "1.1.0"

# for saving the state
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
egui = "0.34.3"

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