-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
executable file
·63 lines (58 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "minecrab"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
bitflags = "1"
bytemuck = { version = "1.12", features = ["derive"] }
byteorder = "1.4"
cgmath = { version = "0.17", features = ["swizzle", "mint"] }
clap = { version = "4.0.19", features = ["derive"] }
cpal = "0.13"
collision = "0.20.1"
flate2 = "1.0"
fnv = "1.0.7"
font-awesome = "0.2"
futures = "0.3"
glob = "0.3.0"
hecs = "0.9"
hematite-nbt = "0.5.2"
hex = "0.4"
image = "0.24"
imgui = "0.8"
imgui-wgpu = "0.20"
imgui-winit-support = { version = "0.8", features = ["winit-26"] }
intmap = "2.0.0"
lewton = "0.10"
log = "0.4"
minecrab_derive = { path = "./minecrab_derive" }
nibble_vec = "0.1.0"
num-traits = "0.2"
num-derive = "0.3"
oddio = "0.6"
pretty_env_logger = "0.4"
profiling = { version = "1.0.7", features = ["profile-with-tracy"] }
rand = "0.8"
raw-cpuid = "10.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
tokio = { version = "1.21.2", features = ["full"] }
tracy-client = "0.14.1"
wgpu = { version = "0.13", features = ["spirv"] }
winit = "0.26"
uuid = "1.2.2"
[build-dependencies]
rustc_version = "0.4.0"
shaderc = "0.8"
version = "3.0.0"
[profile.dev.package.miniz_oxide]
opt-level = 3
# [profile.release]
# opt-level = 3
# lto = true
# overflow-checks = false
# strip = "debuginfo"