-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 1.04 KB
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
[package]
name = "midiometry"
version = "0.1.0"
edition = "2021"
authors = ["dvub <dvubdevs@gmail.com>"]
license = "GPL-3.0-or-later"
homepage = "todo.todo"
description = "A cool plugin for vis midi input"
[workspace]
members = ["xtask"]
[lib]
crate-type = ["cdylib"]
[dependencies]
include_dir = "0.7.4"
mime_guess = "2.0.5"
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git" }
# Remove the `assert_process_allocs` feature to allow allocations on the audio
# thread in debug builds.
# 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"] }
nih_plug_webview = { git = "https://github.com/dvub/nih-plug-webview.git" }
# nih_plug_webview = { path = "../dvub-nih-plug-webview" }
rtrb = "0.3.1"
serde_json = "1.0.133"
triple_buffer = "8.0.0"
[profile.release]
lto = "thin"
strip = "symbols"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"