-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (28 loc) · 873 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
[package]
name = "compressor"
version = "0.1.0"
edition = "2021"
authors = ["Pieter Staal"]
description = ""
[workspace]
members = ["xtask"]
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = ["assert_process_allocs", "standalone"] }
nih_plug_vizia = { git = "https://github.com/robbert-vdh/nih-plug.git" }
csv = "1.1"
rand = "0.8.5"
femtovg = { git = "https://github.com/rhelmot/femtovg", branch = "cosmic", default-features = false, features = ["image-loading"] }
llad = { git = "https://github.com/PietPtr/LLAD.git", branch = "main"}
vizia_scope = { git = "https://github.com/PietPtr/vizia_scope.git", branch = "main" }
[features]
default = []
detailed_debugging = []
[profile.release]
lto = "thin"
strip = "symbols"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"