-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
52 lines (43 loc) · 1.22 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
[package]
name = "enginesound"
version = "1.5.3"
authors = ["https://github.com/DasEtwas/"]
edition = "2018"
description = """
GUI Application used to generate purely synthetic engine sounds with advanced options in real-time, written in Rust.
It features real-time recording of the engine, a CLI, automatic crossfading to create seamless loops in the CLI, realtime frequency domain display through FFT, and preset saving/loading capabilities.
"""
[features]
default = ["gui"]
gui = ["glium", "conrod_core", "conrod_glium", "conrod_winit"]
[profile.release]
debug = true
[dependencies]
# recording #
hound = "3.4.0"
crossbeam-channel = "0.5.0"
chrono = "0.4.19"
# saving presets #
serde = { version = "1.0.118", features = ["derive"] }
ron = "0.6.4"
serde_json = "1.0.61"
# misc #
parking_lot = "0.11.1"
# gui #
glium = { version = "0.28.0", optional = true }
conrod_core = { version = "0.71.0", optional = true }
conrod_glium = { version = "0.71.0", optional = true }
conrod_winit = { version = "0.71.0", optional = true }
winit = "0.23.0"
native-dialog = "0.5.2"
# fft #
num-traits = "0.2.14"
num-complex = "0.3.1"
rustfft = "4.0.0"
# sound #
rand_core = "0.6.2"
rand_xorshift = "0.3.0"
cpal = "0.13.1"
paste = "1.0.4"
# cli #
clap = "2.33.0"