-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
61 lines (57 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "megra_rs"
version = "0.0.14"
authors = ["nik <nik@parkellipsen.de>"]
edition = "2021"
license = "GPL-3.0+"
description = "A live-coding language with Markov chains."
readme = "README.md"
repository = "https://github.com/the-drunk-coder/megra.rs/"
categories = ["multimedia::audio"]
keywords = ["audio", "livecoding", "dsl", "sampler"]
[dependencies]
# only needed as workaround for sha256 which otherwise doesn't compile ...
tokio = { version = "1.28.2", features = ["full"] }
num = "0.4"
cpal = { version="0.15", features = ["jack"] }
directories-next = "2.0"
anyhow = "1.0"
crossbeam = "0.8"
parking_lot = "0.12"
ruffbox_synth = "0.11"
#ruffbox_synth = { path = "../ruffbox-synth" }
nom = "7.1"
vom_rs = "0.5.2"
#vom_rs = { path = "../vom.rs" }
rustyline = "9.1"
claxon = "0.4.3"
getopts = "0.2"
rand = "0.8"
rust-music-theory = "0.2"
egui = { version="0.28", features = ["persistence"] }
eframe = { version="0.28", features = ["persistence"] }
epaint = "0.28"
serde = { version = "1", features = ["derive", "rc"], optional = true }
dashmap = "5.2"
chrono = "0.4"
enum-map = { version = "2.4", features = ["serde"] }
rosc = "~0.10"
hound = "3.4"
regex = "1.5"
midir = "0.8.0"
reqwest = {version = "0.11.16", features = ["blocking"]}
zip = "0.6.4"
sha256 = "1.2"
[dev-dependencies]
assert_approx_eq = "1.1.0"
[features]
default = ["serde"] # enable ringbuffer for WASAPI !
ringbuffer = []
low_latency = [] # blocksize 128 instead of 512
[package.metadata.appimage]
auto_link = true
auto_link_exclude_list = [
"libc.so*",
"libdl.so*",
"libpthread.so*",
]