pixels/Cargo.toml
Jay Oster 051a523ee6
Update wgpu to 0.13 (#300)
* Intial work towards wgpu 0.13

* Increase MSRV for egui

* Add missing texture formats

* Update fermium

- Replaces beryllium with our own hand-rolled high-level abstraction
  layer for SDL2.

* Update dependencies

Co-authored-by: JMS55 <47158642+JMS55@users.noreply.github.com>
2022-08-17 17:30:04 -07:00

41 lines
843 B
TOML

[package]
name = "pixels"
description = "A tiny library providing a GPU-powered pixel frame buffer."
version = "0.9.0"
authors = ["Jay Oster <jay@kodewerx.org>"]
edition = "2021"
rust-version = "1.56.0"
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/*.wgsl",
"/src/**/*",
]
[dependencies]
bytemuck = "1.12"
raw-window-handle = "0.4"
thiserror = "1.0"
ultraviolet = "0.9"
wgpu = "0.13"
[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/*",
]