forked from PistonDevelopers/hematite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 859 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 = "hematite"
version = "0.0.34"
edition = "2018"
license = "MIT"
authors = ["bvssvni <[email protected]>"]
keywords = ["minecraft", "piston", "client"]
description = "A simple Minecraft client"
repository = "https://github.com/PistonDevelopers/hematite.git"
homepage = "http://hematite.piston.rs"
exclude = ["home/*"]
[profile.release]
opt-level = 2
debug = false
[[bin]]
name = "hematite"
path = "src/main.rs"
[lib]
name = "hematite"
path = "src/lib.rs"
[dependencies]
byteorder = "1.4.3"
camera_controllers = "0.27.0"
docopt = "0.7.0"
flate2 = "1.0.20"
fps_counter = "2.0.0"
gfx = "0.17.1"
gfx_core = "0.8.3"
gfx_device_gl = "0.15.5"
libc = "0.2.97"
memmap = "0.5.2"
piston = "0.42.0"
piston3d-gfx_voxel = "0.27.0"
pistoncore-glutin_window = "0.54.0"
rustc-serialize = "0.3.24"
shader_version = "0.3.0"
vecmath = "1.0.0"
zip = "0.5.13"