mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-02-16 17:02:32 +00:00
![Connor Fitzgerald](/assets/img/avatar_default.png)
* Add new presentation modes * Expand presentation formats * Add Surface::get_supported_modes * Update to rust 2021 and improve some metal surface code * Update wgpu-types/src/lib.rs Co-authored-by: bjorn3 <17426603+bjorn3@users.noreply.github.com> * Fix windows build errors * Fix issues with ALLOW_TEARING Co-authored-by: bjorn3 <17426603+bjorn3@users.noreply.github.com>
22 lines
537 B
TOML
22 lines
537 B
TOML
[package]
|
|
name = "wgpu-types"
|
|
version = "0.12.0"
|
|
authors = ["wgpu developers"]
|
|
edition = "2021"
|
|
description = "WebGPU types"
|
|
homepage = "https://github.com/gfx-rs/wgpu"
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
|
keywords = ["graphics"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
|
|
[features]
|
|
trace = ["serde", "bitflags_serde_shim"]
|
|
replay = ["serde", "bitflags_serde_shim"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
serde = { version = "1.0", features = ["serde_derive"], optional = true }
|
|
bitflags_serde_shim = { version = "0.2", optional = true }
|