forked from PistonDevelopers/hematite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (49 loc) · 1.51 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
64
65
66
67
68
69
70
71
[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]
time = "*"
rustc-serialize = "0.2.8"
[dependencies.sdl2]
git = "https://github.com/AngryLawyer/rust-sdl2"
[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.current]
git = "https://github.com/PistonDevelopers/current"
[dependencies.image]
git = "https://github.com/PistonDevelopers/image"
[dependencies.pistoncore-input]
git = "https://github.com/PistonDevelopers/input"
[dependencies.pistoncore-event]
git = "https://github.com/PistonDevelopers/event"
[dependencies.pistoncore-window]
git = "https://github.com/PistonDevelopers/window"
[dependencies.gfx_device_gl]
git = "https://github.com/gfx-rs/gfx-rs"
[dependencies.gfx]
git = "https://github.com/gfx-rs/gfx-rs"
[dependencies.gfx_macros]
git = "https://github.com/gfx-rs/gfx-rs"
[dependencies.shader_version]
git = "https://github.com/PistonDevelopers/shader_version"
[dependencies.quack]
git = "https://github.com/PistonDevelopers/quack"