pixels/Cargo.toml

40 lines
818 B
TOML
Raw Normal View History

[package]
name = "pixels"
description = "A tiny library providing a GPU-powered pixel frame buffer."
2022-01-01 11:18:01 +11:00
version = "0.9.0"
authors = ["Jay Oster <jay@kodewerx.org>"]
edition = "2021"
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",
2021-06-18 13:21:05 +10:00
"/shaders/*.wgsl",
"/src/**/*",
]
[dependencies]
bytemuck = "1.7"
raw-window-handle = "0.4"
thiserror = "1.0"
ultraviolet = "0.8"
wgpu = "0.12"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
pollster = "0.2"
[dev-dependencies]
pixels-mocks = { path = "internals/pixels-mocks" }
winit = "0.26"
[workspace]
members = [
"examples/*",
"internals/*",
]