-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 1.18 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
43
44
45
[package]
name = "blade"
edition = "2021"
authors = ["cozy dsp <hi@cozydsp.space>"]
license = "GPL-3.0-or-later"
homepage = "https://cozydsp.space/plugins/blade"
repository = "https://vcs.cozydsp.space/cozy-dsp/blade"
description = "An innovative filter that works on everything"
[workspace]
members = ["xtask"]
[lib]
crate-type = ["cdylib", "lib"]
[[bin]]
name = "blade"
required-features = ["editor"]
[features]
plus = []
editor = ["nih_plug/standalone"]
[dependencies]
cozy-util = { git = "https://vcs.cozydsp.space/cozy-dsp/cozy-util", version = "0.1.0" }
cozy-ui = { git = "https://vcs.cozydsp.space/cozy-dsp/cozy-ui"}
nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = ["assert_process_allocs", "simd"] }
nih_plug_egui = {git = "https://github.com/robbert-vdh/nih-plug.git"}
egui_extras = {version = "0.27", features = ["image"]}
image = {version = "0.24.9", default-features = false, features = ["gif", "png"]}
libsw = "3.3.1"
open = "5.1.3"
form_urlencoded = "1.2.1"
[profile.release]
strip = "symbols"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"
[build-dependencies]
anyhow = "1.0.81"
vergen = { version = "8.3.1", features = ["git", "gitcl"] }