1[package]
2
3name = "piston"
4version = "0.49.0"
5authors = [
6    "bvssvni <bvssvni@gmail.com>",
7    "Coeuvre <coeuvre@gmail.com>",
8    "gmorenz",
9    "leonkunert <info@leonkunert.de>",
10    "mitchmindtree <me@michellnordine.com>",
11    "Christiandh",
12    "Apointos",
13    "ccgn",
14    "reem",
15    "TyOverby <ty@pre-alpha.com>",
16    "eddyb",
17    "Phlosioneer <mattmdrr2@gmail.com"
18]
19keywords = ["piston", "game", "engine", "core"]
20description = "The Piston game engine core libraries"
21license = "MIT"
22repository = "https://github.com/PistonDevelopers/piston.git"
23homepage = "https://github.com/PistonDevelopers/piston"
24documentation = "https://docs.rs/piston"
25readme = "README.md"
26exclude = ["images/*", "Cargo.png"]
27
28[lib]
29
30name = "piston"
31path = "./src/lib.rs"
32
33[dependencies.pistoncore-input]
34path = "src/input"
35version = "0.28.0"
36
37[dependencies.pistoncore-window]
38path = "src/window"
39version = "0.44.0"
40
41[dependencies.pistoncore-event_loop]
42path = "src/event_loop"
43version = "0.49.0"
44