forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (48 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
61 lines (48 loc) · 1.16 KB
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
[package]
name = "amethyst"
version = "0.3.1"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
description = "Data-oriented game engine written in Rust"
keywords = ["game", "engine", "sdk", "amethyst"]
documentation = "https://www.amethyst.rs/doc/amethyst"
homepage = "https://www.amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
readme = "README.md"
license = "MIT OR Apache-2.0"
[dependencies.amethyst_config]
path = "src/config/"
version = "0.1.0"
[dependencies.amethyst_ecs]
path = "src/ecs/"
version = "0.1.1"
[dependencies.amethyst_renderer]
path = "src/renderer/"
version = "0.3.1"
[[example]]
name = "hello_world"
path = "examples/00_hello_world/main.rs"
[[example]]
name = "window"
path = "examples/01_window/main.rs"
[[example]]
name = "sphere"
path = "examples/02_sphere/main.rs"
[[example]]
name = "renderable"
path = "examples/03_renderable/main.rs"
[[example]]
name = "pong"
path = "examples/04_pong/main.rs"
[[example]]
name = "assets"
path = "examples/06_assets/main.rs"
[dev-dependencies]
obj-rs = "0.4.16"
gfx = "0.12"
[dependencies]
cgmath="0.11"
glutin = "0.6"
gfx = "0.12"
gfx_device_gl = "0.11"
gfx_window_glutin = "0.12"
genmesh="0.4"