-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 921 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
[package]
name = "clap-hot-reload"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clack-plugin = { workspace = true }
clack-host = { workspace = true, features = ["clack-plugin"] }
clack-extensions = { workspace = true, features = ["audio-ports", "gui", "latency", "note-ports", "params", "state", "timer", "clack-host", "clack-plugin"] }
crossbeam-channel = "0.5.9"
crossbeam-utils = "0.8.20"
notify-debouncer-full = "0.3.1"
libloading = "0.8.1"
tempfile = "3.10.1"
blake3 = "1.5.0"
[workspace]
resolver = "2"
members = [
"examples/polysynth"
]
[workspace.dependencies]
clack-plugin = { git = "https://github.com/prokopyl/clack", version = "0.1.0" }
clack-host = { git = "https://github.com/prokopyl/clack", version = "0.1.0" }
clack-extensions = { git = "https://github.com/prokopyl/clack", version = "0.1.0" }