Init Commit

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-07-02 21:58:21 +02:00
commit ad38d6e4e8
9 changed files with 2444 additions and 0 deletions

29
Cargo.toml Normal file
View File

@ -0,0 +1,29 @@
[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"