-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (30 loc) · 1.11 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
[package]
name = "libreguitar"
version = "0.1.0"
authors = ["Eshref Yozdemir <eshrefyoz@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "^1.0"
rustfft = "^6.0"
realfft = "^2.0"
csv = "^1.1"
rand = "^0.8"
serde = { version = "^1.0", features = ["derive"]}
config = "^0.11"
statrs = "^0.13"
console = "^0.14"
log = "^0.3"
simplelog = {version = "^0.10", default_features = false}
minifb = { version = "^0.13", optional = true }
plotters = { version = "^0.3", default_features = false, features = ["ttf", "line_series"], optional = true}
plotters-bitmap = { version = "^0.3", default_features = false, optional = true }
[target.'cfg(target_os = "windows")'.dependencies]
cpal = { version = "^0.13.3", default_features = false}
[target.'cfg(target_os = "macos")'.dependencies]
cpal = { version = "^0.13.3", default_features = false}
[target.'cfg(target_os = "linux")'.dependencies]
cpal = { version = "^0.13.3", default_features = false, features = ["jack"] }
[features]
default = []
gui = ["minifb", "plotters", "plotters-bitmap"]