mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
28 lines
651 B
TOML
28 lines
651 B
TOML
[package]
|
|
name = "wgpu"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
|
"Joshua Groves <josh@joshgroves.com>",
|
|
]
|
|
edition = "2018"
|
|
description = "WebGPU native Rust wrapper"
|
|
homepage = "https://github.com/gfx-rs/wgpu"
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
|
keywords = ["graphics"]
|
|
license = "MPL-2.0"
|
|
|
|
[lib]
|
|
|
|
[features]
|
|
default = []
|
|
winit = ["wgpu-native/winit"]
|
|
metal = ["wgpu-native/gfx-backend-metal"]
|
|
dx11 = ["wgpu-native/gfx-backend-dx11"]
|
|
dx12 = ["wgpu-native/gfx-backend-dx12"]
|
|
vulkan = ["wgpu-native/gfx-backend-vulkan"]
|
|
|
|
[dependencies]
|
|
wgpu-native = { version = "0.1", path = "../wgpu-native" }
|
|
arrayvec = "0.4"
|