-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 952 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 952 Bytes
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
[package]
name = "minecraft"
version = "0.1.0"
authors = ["Chris Ohk <utilforever@gmail.com>"]
description = "A reimplementation of Minecraft written in Rust"
repository = "https://github.com/utilforever/minecraft-rs"
readme = "README.md"
keywords = [ "minecraft", "game", "voxel", "sandbox" ]
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gl = "0.14.0"
glfw = "0.52.0"
rand = "0.8.5"
image = "0.24.7"
itertools = "0.12.1"
specs = { version = "0.20.0", features = ["specs-derive"] }
nalgebra = "0.32.3"
nalgebra-glm = "0.18.0"
num-traits = "0.2.18"
noise = "0.8.2"
lazy_static = "1.4.0"
log = "0.4.22"
pretty_env_logger = "0.5.0"
bit-vec = "0.8.0"
rayon = "1.10.0"
parking_lot = { version = "0.12.3", features = ["deadlock_detection"] }
dashmap = "6.1.0"
owning_ref = "0.4.1"
num_cpus = "1.16.0"
crossbeam-channel = "0.5.14"
[features]
gl_debug = []