-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (55 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (55 loc) · 1.59 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
members = ["xtask"]
resolver = "2"
[package]
name = "spectral_forge"
version = "0.15.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = ["assert_process_allocs"] }
nih_plug_egui = { git = "https://github.com/robbert-vdh/nih-plug.git" }
realfft = "3"
triple_buffer = "9"
parking_lot = "0.12"
num-complex = "0.4"
multiversion = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
directories = "5.0"
opener = "0.7"
smallvec = "1"
[features]
# Enables probe infrastructure for calibration integration tests.
# Zero cost in normal builds (neither debug nor release).
probe = []
# Builds a side-by-side "dev" copy of the plugin with a different display name,
# CLAP ID, and VST3 class ID, so it can coexist in the host with the main build.
# No behavioural difference — purely identity overrides in src/lib.rs.
dev-build = []
[[test]]
name = "calibration_roundtrip"
required-features = ["probe"]
[[test]]
name = "bin_physics_pipeline"
required-features = ["probe"]
[[test]]
name = "calibration"
required-features = ["probe"]
[[test]]
name = "circuit"
required-features = ["probe"]
[dev-dependencies]
approx = "0.5"
tempfile = "3"
[profile.release]
lto = "thin"
opt-level = 3
strip = "symbols"
[profile.dev]
opt-level = 1
# Local patch: exposes EguiState::set_requested_size() as pub so we can trigger
# the CLAP request_resize() handshake at runtime for user-controlled UI scaling.
[patch."https://github.com/robbert-vdh/nih-plug.git"]
nih_plug_egui = { path = "vendor/nih_plug_egui" }