summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-06-20 21:33:49 +0000
committerGitHub <noreply@github.com>2026-06-20 21:33:49 +0000
commit6ca86f2c3f8bb4531aa623927765f4e676fe46ae (patch)
tree6eec0d05eae661c4b331823bd0b3a7699fac49c5 /Cargo.toml
parent029fc9d3cf4768d94a6e37380e1dcc1e758ae876 (diff)
Avoid allocations in the real-time audio thread
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 3 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index aff957a..a22c29e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,21 +1,18 @@
[package]
name = "retain"
-version = "0.1.0-pre2"
+version = "0.1.0"
authors = [ "haemolacriaa" ]
description = "Retain is a real-time audio plugin that retains the nth largest magnitude frequencies in a signal"
edition = "2024"
repository = "https://git.haemolacriaa.com/retain"
+license = "GPL-3.0"
publish = false
[lib]
crate-type = ["rlib", "cdylib"]
[dependencies]
-nice-plug = {
- path = "../nice-plug/crates/nice-plug",
- version = "0.1.0",
- features = ["assert_process_allocs"]
-}
+nice-plug = { path = "../nice-plug/crates/nice-plug", version = "0.1.0" }
nice-plug-egui = { path = "../nice-plug/crates/nice-plug-egui", version = "0.1.5" }
realfft = { version = "3.5.0", features = ["avx", "neon", "sse"] }
num-complex = "0.4.6"