-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 960 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 960 Bytes
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 = "piston2d-wgpu_graphics"
version = "0.14.0"
edition = "2024"
authors = [
"shinmili",
"Sven Nilsen <bvssvni@gmail.com",
]
keywords = ["wgpu", "graphics", "2d", "piston"]
description = "A WGPU 2D back-end for the Piston game engine"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/PistonDevelopers/wgpu_graphics.git"
homepage = "https://github.com/PistonDevelopers/wgpu_graphics"
documentation = "https://docs.rs/piston2d-wgpu_graphics"
exclude = ["assets/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "wgpu_graphics"
[dev-dependencies]
find_folder = "0.3"
futures = "0.3"
piston = "1.0.0"
pistoncore-winit_window = "0.19.0"
[dependencies]
bytemuck = { version = "1.7", features = ["derive"] }
image = "0.25.1"
piston-texture = "0.9.0"
piston2d-graphics = { version = "0.45.0", features = ["glyph_cache_rusttype"] }
wgpu = "29.0.1"