pixels/Cargo.toml

35 lines
701 B
TOML
Raw Normal View History

[package]
name = "pixels"
description = "A tiny library providing a GPU-powered pixel frame buffer."
version = "0.0.3"
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"
include = [
"/Cargo.*",
"/LICENSE",
"/README.md",
"/img/pixels.png",
"/shaders/*.spv",
"/src/**/*",
]
[dependencies]
2020-04-12 23:13:40 -07:00
thiserror = "1.0.15"
wgpu = "0.5.0"
2020-04-13 21:06:01 -07:00
futures-executor = "0.3"
[dev-dependencies]
pixels-mocks = { path = "pixels-mocks" }
2020-04-12 23:13:40 -07:00
winit = "0.22.0"
[workspace]
members = [
"examples/*",
"pixels-mocks",
]