forked from eira-fransham/goeld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 910 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
37
38
39
40
41
42
43
44
45
46
[package]
name = "goeld"
version = "0.1.0"
authors = ["Jef <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arraydeque = "0.4"
anyhow = "1"
async-trait = "0.1"
bsp = { path = "./bsp" }
bitflags = "1"
bytemuck = "1"
cgmath = "0.17"
collision = "0.20"
fnv = "1"
futures = "0.3"
goldsrc-mdl = { path = "./goldsrc-mdl/" }
image = "0.23"
imgui = "0.6"
imgui-wgpu = "0.12"
imgui-winit-support = "0.6"
itertools = "0.9"
lazy_static = "1.4"
memoffset = "0.5"
# TODO: Use `guillotiere`
rect_packer = "0.2"
wgpu = "0.6"
winit = "0.23"
winit-async = { path = "./winit-async/" }
jemallocator = { version = "0.3", optional = true }
[build-dependencies]
shaderc = "0.6"
[features]
default = ["jemallocator"]
[workspace]
members = ["bsp", "goldsrc-mdl", "goldsrc-format-common"]
[profile.release]
lto = "thin"