forked from PistonDevelopers/piston_window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (27 loc) · 819 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
[package]
name = "piston_window"
version = "0.116.0"
authors = ["bvssvni <[email protected]>"]
keywords = ["window", "piston"]
description = "The official Piston window wrapper for the Piston game engine"
license = "MIT"
readme = "README.md"
repository = "https://github.com/pistondevelopers/piston_window.git"
homepage = "https://github.com/pistondevelopers/piston_window"
documentation = "https://docs.rs/piston_window"
exclude = ["*.png"]
[lib]
path = "src/lib.rs"
name = "piston_window"
[dependencies]
gfx = "0.18.1"
gfx_device_gl = "0.16.2"
piston = "0.52.0"
piston2d-gfx_graphics = "0.72.0"
piston2d-graphics = "0.39.0"
piston-texture = "0.8.0"
shader_version = "0.7.0"
pistoncore-glutin_window = {version = "0.67.0", optional = true}
[features]
default = ["glutin"]
glutin = ["pistoncore-glutin_window"]