-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 928 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
[package]
name = "engine"
version = "0.1.0"
authors = ["Angelos Gkountis <[email protected]>"]
edition = "2021"
[features]
default = ["use-spirv", "auto-compile-spirv"]
use-spirv = []
auto-compile-spirv = []
[dependencies]
serde = "^1.0.0"
ron = "^0.6.0"
lazy_static = "^1.4.0"
mint = "^0.5.6"
nalgebra = { version = "^0.29.0", features = ["mint"] }
nalgebra-glm = { version = "^0.15.0", features = ["serde-serialize"] }
bitflags = "^1.0.0"
image = "^0.23.0"
memoffset = "^0.6.0"
gli-rs = "^0.4.0"
glutin = "^0.27.0"
gl_bindings = {path = "gl_bindings"}
crevice = "^0.7.1"
imgui = "^0.8.0"
imgui-winit-support = "^0.8.0"
imgui-opengl-renderer = { git = "https://github.com/agkountis/rust-imgui-opengl-renderer" }
shaderc = "^0.7.0"
itertools = "^0.10.0"
uuid = { version = "0.8", features = ["v4"] }
[dependencies.gltf]
version = "^0.15"
features = ["extras", "names", "utils"]
[build-dependencies]
glob = "^0.3.0"