-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (32 loc) · 943 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
[package]
name = "waterfall-rs"
version = "0.1.0"
edition = "2021"
[profile.release]
debug = true
# lto = true
[dependencies]
cpal = "0.13.5"
eframe = { git = "https://github.com/emilk/egui", rev = "898f4804" }
egui = { git = "https://github.com/emilk/egui", rev = "898f4804" }
egui_extras = { git = "https://github.com/emilk/egui", rev = "898f4804" }
float-cmp = "0.4.0"
#futures = { version = "0.3.23", feature = ["executor"] }
rand = "0.8.5"
realfft = "3.3.0"
rustfft = "6.2.0"
statrs = "0.16.0"
#tokio = { version = "1.20.1", features = ["full"] }
tokio = { version = "1.20.1", features = ["sync"] }
wasm-timer = "0.2.5"
rayon = "1.6.0"
rust-embed = "8.2.0"
hound = "3.5.1"
[dev-dependencies]
indicatif = {version = "0.17.2", features = ["rayon"]}
plotters = "0.3.4"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
getrandom = { version = "0.2.7", features = ["js"] }