-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
72 lines (61 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "piston2d-opengl_graphics"
version = "0.86.0"
edition = "2018"
authors = [
"bvssvni <[email protected]>",
"Coeuvre <[email protected]>",
"gmorenz",
"leonkunert <[email protected]>",
"mitchmindtree <[email protected]>",
"Christiandh",
"Apointos",
"ccgn",
"reem",
"TyOverby <[email protected]>"
]
keywords = ["opengl", "graphics", "2d", "piston"]
description = "An OpenGL 2D back-end for the Piston game engine"
license = "MIT"
readme = "README.md"
repository = "https://github.com/PistonDevelopers/opengl_graphics.git"
homepage = "https://github.com/PistonDevelopers/opengl_graphics"
documentation = "https://docs.rs/piston2d-opengl_graphics"
exclude = ["assets/*", "Cargo.png"]
[lib]
name = "opengl_graphics"
path = "src/lib.rs"
[features]
default = ["gl"]
webgl = ["gl"]
glow = ["piston2d-glow_wrap"]
[dependencies]
image = "0.25.2"
piston-shaders_graphics2d = "0.4.0"
piston-texture = "0.9.0"
piston-viewport = "1.0.2"
shader_version = "0.7.0"
fnv = "1.0.7"
piston2d-glow_wrap = { path = "glow_wrap", version = "0.1.0", optional = true}
gl = { version = "0.14.0", optional = true}
[dependencies.piston2d-graphics]
version = "0.45.0"
features = ["glyph_cache_rusttype"]
[target.'cfg(not(any(target_arch = "wasm32")))'.dev-dependencies]
piston = {version = "1.0.0", features = ["async"]}
pistoncore-sdl2_window = "0.70.0"
rand = "0.8.5"
tokio = {version = "1.40.0", features = ["full"]}
futures = "0.3.31"
glutin = "0.32.1"
glow = "0.14.2"
[target.'cfg(target_arch = "wasm32")'.dependencies]
glow = "0.14.2"
web-sys = { version = "0.3.72", features = [
"HtmlCanvasElement",
"WebGl2RenderingContext",
"Window",
] }
wasm-bindgen = { version = "0.2.95" }
[build-dependencies]
khronos_api = "3.1.0"