-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
48 lines (42 loc) · 1.15 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
[workspace]
resolver = "2"
members = [
"crates/lib/*",
"crates/bin/*",
"crates/shaders/*",
]
[package]
name = "doome"
version = "0.1.0"
edition = "2021"
[dependencies]
# Workspace
doome-bevy = { path = "crates/lib/bevy" }
doome-engine = { path = "crates/lib/engine" }
doome-raytracer = { path = "crates/lib/raytracer" }
doome-surface = { path = "crates/lib/surface" }
doome-nav = { path = "crates/lib/nav" }
doome-geo = { path = "crates/lib/geo" }
# Crates.io
anyhow = "1.0"
bevy = { version = "0.9", default-features = false, features = ["bevy_winit"] }
clap = { version = "4.0", features = ["derive"] }
glam = "0.22"
image = "0.24"
include_dir = "0.7"
indoc = "1.0"
instant = "0.1"
itertools = "0.10.5"
log = "0.4"
palette = "0.6.1"
quick-xml = { version = "0.26", features = ["serialize"] }
rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[features]
static-assets = []
[profile.dev]
overflow-checks = false
[patch."crates-io"]
# TODO https://github.com/gfx-rs/naga/issues/1969
naga = { git = "https://github.com/Patryk27/wgpu", branch = "issues/1969" }