-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 861 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
[package]
name = "volym"
version = "0.1.0"
edition = "2021"
[dependencies]
#winit = { version = "0.29", features = ["rwh_05"] }
#wgpu = { version = "23.0.1", default-features = true }
serde = { version = "1", features = ["derive"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing = "0.1.41"
color-eyre = "0.6.3"
tracing-error = "0.2.1"
pollster = "0.4.0"
clap = { version = "4.5.23", features = ["derive"] }
cgmath = "0.18.0"
bytemuck = { version = "1.20.0", features = ["derive"] }
image = "0.25.5"
serde_json = "1.0.134"
egui = "0.28.1"
egui-wgpu = "0.28.1"
egui-winit = "0.28.1"
futures-intrusive = "0.5.0"
csv = "1.1"
# 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