summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-17 21:12:15 -0500
committerGitHub <noreply@github.com>2026-05-17 21:12:15 -0500
commitbc9ad151dbf478cdb39040524a50c9d901ef018b (patch)
treedc201f1813d0c6bbe7894f2816973a60896ba5c9 /Cargo.toml
parent6686b6765992f86c208949925c1c3c09cbb31353 (diff)
Add Blackman-Harris window
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6bbf43f..a91ef6d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,8 +23,11 @@ baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "237d323c7
egui-baseview = { git = "https://codeberg.org/BillyDM/egui-baseview.git", version = "0.7.0" }
# to serialize parameters and save the plugin state
+# serde json could offer better backwards compatibility
+# for loading parameters in future updates
prost = "0.14.3"
-prost-build = "0.14.3"
+
+# for calculation
realfft = { version = "3.5.0", features = ["avx", "neon", "sse"] }
num-complex = "0.4.6"
rustc-hash = "2.1.2"