mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-26 08:44:08 +00:00
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "wgpu-native"
|
|
version = "0.2.6"
|
|
authors = [
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
|
"Joshua Groves <josh@joshgroves.com>",
|
|
]
|
|
edition = "2018"
|
|
description = "WebGPU native implementation on gfx-hal"
|
|
homepage = "https://github.com/gfx-rs/wgpu"
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
|
keywords = ["graphics"]
|
|
license = "MPL-2.0"
|
|
|
|
[lib]
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[features]
|
|
default = []
|
|
local = []
|
|
remote = ["serde"]
|
|
metal-auto-capture = ["gfx-backend-metal/auto-capture"]
|
|
window-winit = ["winit", "gfx-backend-empty/winit"]
|
|
|
|
[dependencies]
|
|
arrayvec = "0.4"
|
|
bitflags = "1.0"
|
|
copyless = "0.1"
|
|
lazy_static = "1.1.0"
|
|
log = "0.4"
|
|
parking_lot = { version = "0.8" }
|
|
hal = { package = "gfx-hal", version = "0.1" }
|
|
gfx-backend-empty = { version = "0.1.1" }
|
|
gfx-backend-vulkan = { version = "0.1", optional = true }
|
|
gfx-backend-dx11 = { version = "0.1", optional = true }
|
|
gfx-backend-dx12 = { version = "0.1", optional = true }
|
|
gfx-backend-metal = { version = "0.1", optional = true }
|
|
#rendy-memory = { git = "https://github.com/rustgd/rendy", rev = "ce7dd7f", features = ["gfx-hal"] }
|
|
serde = { version = "1.0", features = ["serde_derive"], optional = true }
|
|
vec_map = "0.8"
|
|
winit = { version = "0.18", optional = true }
|