-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
45 lines (39 loc) · 983 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
[package]
name = "dotrix"
version = "0.6.0"
authors = [
"Elias Kartašov <elias@lowenware.com>",
"Štěpán Wünsch <sw@lowenware.com>",
"Nikita Zemtsov <z-nik@ya.ru>",
]
edition = "2021"
description = "3D Engine"
license = "MIT"
[lib]
name = "dotrix"
path = "src/lib.rs"
[[bin]]
name = "demo"
path = "demo/main.rs"
[features]
default = []
[dependencies]
rand = "0.8"
bytemuck = { version = "1.4", features = ["derive"] }
image = "0.25"
uuid = { version = "1.1", features = ["v4"] }
log = "0.4.20"
once_cell = "1.18.0"
futures = {version = "0.3", default-features = false, features = ["std", "executor"]}
raw-window-handle = {version = "0.6.1"}
winit = {version = "0.30.5", features = ["serde", "rwh_06"]}
bitflags = "2.4.1"
ash = "0.38.0"
ash-window = "0.13.0"
gltf = "1.4.0"
base64 = "0.22.0"
glam = { version = "0.27.0", features = ["bytemuck"] }
genmesh = "0.6.2"
[dev-dependencies]
#noise = { version = "0.8" }
#bytemuck = { version = "1.4", features = ["derive"] }