[package]
edition = "2018"
name = "graphics_buffer"
version = "0.7.0"
authors = ["Kai Schmidt <kaikaliischmidt@gmail.com>"]
description = "A buffer which can be used as a render target for Piston's graphics library. This buffer can be loaded from and/or saved to a file on disk. This allows for things like screenshots in games."
documentation = "https://docs.rs/graphics_buffer/"
readme = "readme.md"
keywords = ["piston", "image", "rendering", "graphics"]
categories = ["multimedia", "multimedia::images", "rendering"]
license = "MIT"
repository = "https://github.com/kaikalii/graphics_buffer"
[[example]]
name = "circles"
[[example]]
name = "text"
[[example]]
name = "tiled"
[[example]]
name = "window"
required-features = ["piston_window_texture"]
[dependencies.bit-vec]
version = "0.6.1"
[dependencies.image]
version = "0.22.1"
[dependencies.piston-texture]
version = "0.6.0"
[dependencies.piston2d-graphics]
version = "0.33.0"
features = ["glyph_cache_rusttype"]
[dependencies.piston_window]
version = "0.102.0"
optional = true
[dependencies.png]
version = "0.15.0"
[dependencies.rayon]
version = "1.1.0"
[features]
default = []
piston_window_texture = ["piston_window"]