-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (58 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
63 lines (58 loc) · 1.43 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[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"
[[bin]]
name = "dotrix-terrain"
path = "utils/terrain/main.rs"
required-features = ["terrain"]
[features]
default = ["terrain", "skydome"]
skydome = []
terrain = [
"dep:noise",
"dep:rand",
"dep:num",
"dep:structopt",
"dep:toml",
"dep:serde",
]
[dependencies]
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.1"
base64 = "0.22.0"
glam = { version = "0.27.0", features = ["bytemuck"] }
genmesh = "0.6.2" # TODO: make optional
# optional
noise = { version = "0.9.0", optional = true }
num = { version = "0.4", optional = true }
rand = { version = "0.8.4", features = ["small_rng"], optional = true }
structopt = { version = "0.3", optional = true }
toml = { version = "0.8", optional = true }
serde = { version = "1.0", optional = true }