-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (50 loc) · 1.44 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[workspace]
members = [
"crates/beamer",
"crates/beamer-core",
"crates/beamer-macros",
"crates/beamer-utils",
"crates/beamer-au",
"crates/beamer-vst3",
"crates/beamer-webview",
"examples/gain",
"examples/compressor",
"examples/equalizer",
"examples/delay",
"examples/synthesizer",
"examples/midi-transform",
"examples/drums",
"examples/webview-demo",
"xtask",
]
resolver = "2"
[workspace.package]
version = "0.2.4"
edition = "2021"
license = "MIT"
repository = "https://github.com/helpermedia/beamer"
[workspace.dependencies]
vst3 = "0.3"
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Proc-macro dependencies
syn = { version = "2", features = ["full", "parsing", "printing", "extra-traits"] }
quote = "1"
proc-macro2 = "1"
# Internal crates
beamer = { version = "0.2.4", path = "crates/beamer" }
beamer-core = { version = "0.2.4", path = "crates/beamer-core" }
beamer-macros = { version = "0.2.4", path = "crates/beamer-macros" }
beamer-utils = { version = "0.2.4", path = "crates/beamer-utils" }
beamer-au = { version = "0.2.4", path = "crates/beamer-au" }
beamer-vst3 = { version = "0.2.4", path = "crates/beamer-vst3" }
beamer-webview = { version = "0.2.4", path = "crates/beamer-webview" }
[workspace.lints.clippy]
undocumented_unsafe_blocks = "warn"
[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "warn"
[profile.release]
lto = true
codegen-units = 1
strip = true