26 lines
477 B
TOML
26 lines
477 B
TOML
[package]
|
|
name = "midi_mute"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = ""
|
|
homepage = "https://som.codes/plugins/"
|
|
description = "mute a signal when a midi note is down"
|
|
|
|
[workspace]
|
|
members = ["xtask"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = ["assert_process_allocs"] }
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
strip = "symbols"
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|
|
strip = "none"
|