-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 820 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
[package]
name = "colimiter"
version = "1.0.0"
authors = ["Violeta Hernández Palacios <[email protected]>"]
description = "An inverse limiter."
edition = "2021"
homepage = "https://viiii.neocities.org/software/colimiter"
repository = "https://github.com/vihdzp/colimiter"
license = "GPL-3.0-only" # Needed for vst3-sys compatibility
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
# nih-plug
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git" }
nih_plug_vizia = { git = "https://github.com/robbert-vdh/nih-plug.git" }
# Other dependencies
atomic_float = "0.1.0"
open = "4.1.0"
# Remove DLL bloat
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = true
[workspace]
members = ["xtask"]