forked from PistonDevelopers/hematite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (28 loc) · 799 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
45
46
47
[package]
name = "hematite"
version = "0.0.0"
authors = ["bvssvni <[email protected]>"]
tags = []
[profile.dev]
opt-level = 2
debug = false
[profile.release]
opt-level = 2
debug = false
[[bin]]
name = "hematite"
path = "src/main.rs"
[dependencies.pistoncore-sdl2_window]
git = "https://github.com/PistonDevelopers/sdl2_window"
[dependencies.piston3d-gfx_voxel]
git = "https://github.com/PistonDevelopers/gfx_voxel"
[dependencies.piston3d-cam]
git = "https://github.com/PistonDevelopers/cam"
[dependencies.fps_counter]
git = "https://github.com/PistonDevelopers/fps_counter"
[dependencies.vecmath]
git = "https://github.com/PistonDevelopers/vecmath"
[dependencies.image]
git = "https://github.com/PistonDevelopers/image"
[dependencies.gfx]
git = "https://github.com/gfx-rs/gfx-rs"