30 lines
701 B
TOML
30 lines
701 B
TOML
[package]
|
|
name = "glasgow_smile"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["allanger <allanger@badhouseplants.net>"]
|
|
license = "GPL-3.0-or-later"
|
|
homepage = "https://badhouseplants.net"
|
|
description = "An ugly fuzz"
|
|
|
|
[workspace]
|
|
members = ["xtask"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# Remove the `assert_process_allocs` feature to allow allocations on the audio
|
|
# thread in debug builds.
|
|
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = ["assert_process_allocs"] }
|
|
nih_plug_iced = { git = "https://github.com/robbert-vdh/nih-plug.git" }
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
strip = "symbols"
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|
|
strip = "none"
|