-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.16 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
[package]
name = "wavefront"
version = "1.0.2"
edition = "2021"
[dependencies]
bevy_file_dialog = "0.6"
bevy_pixel_buffer = { version = "0.8.2", features = ["egui"] }
egui_extras = { version = "0.29", features = ["image"] }
image = { version = "0.25.0", features = [
"png",
"rayon",
], default-features = false }
egui_plot = "0.29"
rand = "0.8.5"
rand_distr = "0.4.3"
rayon = "1.8.0"
serde = { version = "1.0.197", features = ["serde_derive"] }
serde_json = "1.0.114"
spectrum-analyzer = "1.5.0"
egui_dock = "0.14"
plotters = { version = "0.3.5", default-features = false, features = [
"svg_backend",
"line_series",
] }
winit = "0.30"
csv = "1.3.0"
egui = { version = "0.29", features = ["serde"] }
bevy = { version = "0.14.2", default-features = false, features = [
"multi_threaded",
"bevy_winit",
"bevy_render",
"png",
"x11",
"wayland",
"serialize",
"webgpu",
] }
hound = "3.5.1"
[build-dependencies]
embed-resource = "2.4.2"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3