-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
43 lines (38 loc) · 869 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "audio_server"
version = "0.1.0"
authors = ["mitchmindtree <[email protected]>"]
[profile.release]
debug = true
[[bin]]
name = "audio_server"
path = "src/bin/main.rs"
[lib]
name = "audio_server"
path = "src/lib/lib.rs"
[dependencies]
conrod_core = "0.69"
conrod_derive = "0.69"
crossbeam = "0.3"
custom_derive = "0.1"
fxhash = "0.2"
hound = "3.3"
mindtree_utils = "0.4"
newtype_derive = "0.1"
nannou = "0.13"
nannou_audio = "0.2"
nannou_osc = "0.1"
num_cpus = "1.8"
pitch_calc = "0.11"
rand_xorshift = "0.2"
rustfft = "2.0"
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1.0"
serde_json = "1.0"
slug = "0.1"
time_calc = { version = "0.13", features = ["serde"] }
threadpool = "1.7"
walkdir = "2"
[features]
asio = ["nannou_audio/asio"]
test_with_stereo = [] # Compile with this feature to set the max i/o channels as `2`.