-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (25 loc) · 890 Bytes
/
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
[package]
name = "fretcat"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["xtask", "standalone", "fretcat_effects", "fretcat_editor", "fretcat_macros", "fretcat_serialization", "fretcat_styles", "nih_plug"]
exclude = ["crates/assets"]
[dependencies]
nih_plug = { git = "https://github.com/geom3trik/nih-plug.git", branch = "vizia-update", features = ["standalone", "assert_process_allocs"] }
fretcat_effects = {path = "fretcat_effects"}
fretcat_editor = {path = "fretcat_editor"}
fretcat_serialization = {path = "fretcat_serialization"}
fretcat_styles = {path = "fretcat_styles"}
[lib]
crate-type = ["cdylib", "lib"]
[profile.release]
lto = "thin"
strip = "symbols"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"
[profile.dev.package."*"]
opt-level = 3