-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (44 loc) · 1.05 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
49
50
51
workspace = { members = ["hexmacros"] }
[package]
name = "hexahedron"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "calc"
path = "./bin/calc.rs"
[[bin]]
name = "codegen"
path = "./bin/codegen.rs"
[[bin]]
name = "sandbox"
path = "./bin/sandbox/main.rs"
[[bin]]
name = "netbox"
path = "./bin/netbox/main.rs"
[dependencies]
hexmacros = { path = "hexmacros" }
blake3 = "1.5.5"
bytemuck = { version = "1.18.0", features = ["derive"] }
chrono = "0.4.38"
flate2 = "1.0.33"
glam = { version = "0.29.0", features = ["serde"] }
gltf = "1.4.1"
hashbrown = { version = "0.14.5", features = ["serde"] }
image = "0.25.2"
itertools = "0.13.0"
noise = "0.9.0"
parking_lot = "0.12.3"
paste = "1.0.15"
rand = "0.8.5"
rollgrid = { version = "0.3.0", features = ["serde"]}
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
sha2 = "0.10.8"
spin_sleep = "1.3.0"
splines = { version = "4.3.1", features = ["glam"] }
tap = "1.0.1"
thiserror = "1.0.63"
tokio = { version = "1.41.1", features = ["full"] }
twox-hash = "2.1.0"
argon2 = "0.5.3"
aes = "0.8.4"