2019-09-25 23:07:30 -07:00
|
|
|
[package]
|
|
|
|
name = "pixels"
|
|
|
|
description = "A tiny library providing a GPU-powered pixel frame buffer."
|
2019-11-20 06:27:55 +01:00
|
|
|
version = "0.0.3"
|
2019-09-25 23:07:30 -07:00
|
|
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
|
|
|
edition = "2018"
|
|
|
|
repository = "https://github.com/parasyte/pixels"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["pixels", "2D", "GPU", "framebuffer"]
|
|
|
|
categories = ["graphics", "rendering"]
|
|
|
|
license = "MIT"
|
2019-11-02 22:44:10 -07:00
|
|
|
include = [
|
|
|
|
"/Cargo.*",
|
|
|
|
"/LICENSE",
|
|
|
|
"/README.md",
|
|
|
|
"/img/pixels.png",
|
|
|
|
"/shaders/*.spv",
|
|
|
|
"/src/**/*",
|
|
|
|
]
|
2019-09-25 23:07:30 -07:00
|
|
|
|
2019-11-03 16:55:17 -08:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "parasyte/pixels" }
|
2019-11-03 22:12:56 -08:00
|
|
|
maintenance = { status = "actively-developed" }
|
2019-11-03 16:55:17 -08:00
|
|
|
|
2019-09-25 23:07:30 -07:00
|
|
|
[dependencies]
|
2020-04-12 23:13:40 -07:00
|
|
|
thiserror = "1.0.15"
|
|
|
|
wgpu = "0.5.0"
|
|
|
|
futures = "0.3"
|
2019-09-25 23:07:30 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-10-01 19:31:18 -07:00
|
|
|
pixels-mocks = { path = "pixels-mocks" }
|
2020-04-12 23:13:40 -07:00
|
|
|
winit = "0.22.0"
|
2019-11-19 19:37:36 -08:00
|
|
|
|
2019-10-01 19:31:18 -07:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2020-04-13 10:12:18 -07:00
|
|
|
"examples/*",
|
2019-10-01 19:31:18 -07:00
|
|
|
"pixels-mocks",
|
|
|
|
]
|