-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.03 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
[package]
name = "sarus-editor-plugin"
version = "0.1.0"
edition = "2018"
license = "GPL-3.0"
[lib]
crate-type = ["cdylib", "lib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
baseplug = { git = "https://github.com/DGriffin91/baseplug.git", branch = "shared" }
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "f6e99e9aa6f5aeb6b721cb05e4d882a51d995909" }
egui-baseview = { git = "https://github.com/BillyDM/egui-baseview", branch = "main" }
egui = "0.15"
serde = { version = "1.0", features = ["derive"] }
raw-window-handle = "0.3"
vst = "0.2"
keyboard-types = { version = "0.5.0", default-features = false }
dirs = "4"
directories = "4"
log = "0.4"
log-panics = "2"
simplelog = "0.8"
rand = "0.8.4"
ron = "0.6"
ringbuf = "0.2.6"
sarus = { git = "https://github.com/DGriffin91/sarus.git" }
anyhow = "1.0.43"
triple_buffer = "5.0.6"
notify = "5.0.0-pre.13"
rfd = "0.5.0"
toml = "0.5"
syntect = { version = "4", default-features = false, features = ["default-fancy"] }