-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
42 lines (35 loc) · 1.11 KB
/
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
37
38
39
40
41
42
[package]
name = "elysiera"
version = "0.1.0"
edition = "2021"
authors = ["Natapat Samutpong <contact@azur.moe>"]
license = "GPL-3.0-or-later"
homepage = "https://azur.moe"
description = "A plugin"
[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_egui = { git = "/~https://github.com/robbert-vdh/nih-plug.git" }
# Uncomment the below line to disable the on-by-default VST3 feature to remove
# the GPL compatibility requirement
# nih_plug = { git = "/~https://github.com/robbert-vdh/nih-plug.git", default_features = false, features = ["assert_process_allocs"] }
faust-types = { git = "/~https://github.com/Frando/rust-faust" }
default-boxed = "0.2.0"
atomic_float = "0.1.0"
lazy_static = "1.4.0"
parking_lot = "0.12.1"
itertools = "0.12.1"
[profile.dev]
opt-level = 1
[profile.release]
lto = "thin"
strip = "symbols"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"