forked from PistonDevelopers/piston
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 980 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
[package]
name = "piston"
version = "0.48.0"
authors = [
"bvssvni <bvssvni@gmail.com>",
"Coeuvre <coeuvre@gmail.com>",
"gmorenz",
"leonkunert <info@leonkunert.de>",
"mitchmindtree <me@michellnordine.com>",
"Christiandh",
"Apointos",
"ccgn",
"reem",
"TyOverby <ty@pre-alpha.com>",
"eddyb",
"Phlosioneer <mattmdrr2@gmail.com"
]
keywords = ["piston", "game", "engine", "core"]
description = "The Piston game engine core libraries"
license = "MIT"
repository = "https://github.com/PistonDevelopers/piston.git"
homepage = "https://github.com/PistonDevelopers/piston"
documentation = "https://docs.rs/piston"
readme = "README.md"
exclude = ["images/*", "Cargo.png"]
[lib]
name = "piston"
path = "./src/lib.rs"
[dependencies.pistoncore-input]
path = "src/input"
version = "0.28.0"
[dependencies.pistoncore-window]
path = "src/window"
version = "0.43.0"
[dependencies.pistoncore-event_loop]
path = "src/event_loop"
version = "0.48.0"