-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (31 loc) · 947 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "scrollscope"
version = "1.4.1"
edition = "2021"
authors = ["Ardura <azviscarra@gmail.com>"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/ardura"
description = "A simple scrolling oscilloscope"
[workspace]
members = ["xtask"]
[lib]
crate-type = ["cdylib","lib"]
[dependencies]
atomic_float = "0.1"
configparser = "3.0.4"
dirs = "5.0.1"
egui = "0.21.0"
itertools = "0.12.1"
# This is copied from Actuate, technically it could point to Robbert's Git too, doesn't matter
nih_plug = { git = "https://github.com/ardura/nih-plug.git", rev = "e59dc33aaf0c06c834dba0821f6e269e6377f362", features = ["assert_process_allocs","standalone"] }
nih_plug_egui = { git = "https://github.com/ardura/nih-plug.git", rev = "e59dc33aaf0c06c834dba0821f6e269e6377f362" }
rustfft = "6.2.0"
[profile.release]
lto = "thin"
strip = "symbols"
[profile.profiling]
inherits = "release"
lto = "off"
opt-level = 0
debug = true
strip = "none"