-
-
Notifications
You must be signed in to change notification settings - Fork 236
/
Cargo.toml
52 lines (46 loc) · 1.08 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
[package]
name = "piston"
version = "1.0.0"
edition = "2018"
authors = [
"bvssvni <[email protected]>",
"Coeuvre <[email protected]>",
"gmorenz",
"leonkunert <[email protected]>",
"mitchmindtree <[email protected]>",
"Christiandh",
"Apointos",
"ccgn",
"reem",
"TyOverby <[email protected]>",
"eddyb",
"Phlosioneer <[email protected]"
]
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/*"]
[lib]
name = "piston"
path = "./src/lib.rs"
[features]
async = ["pistoncore-event_loop/async"]
[dependencies.pistoncore-input]
path = "src/input"
version = "1.0.1"
[dependencies.pistoncore-window]
path = "src/window"
version = "1.0.0"
[dependencies.pistoncore-event_loop]
path = "src/event_loop"
version = "1.0.0"
[workspace]
members = [
"src/input",
"src/window",
"src/event_loop"
]