wgpu/wgpu-native/Cargo.toml

36 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "wgpu-native"
version = "0.1.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
]
2019-01-12 18:58:24 +00:00
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"
2018-09-22 22:54:19 +00:00
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[features]
default = []
2019-02-14 19:08:19 +00:00
local = ["winit", "gfx-backend-empty/winit"]
metal-auto-capture = ["gfx-backend-metal/auto-capture"]
[dependencies]
bitflags = "1.0"
2018-09-22 22:54:19 +00:00
lazy_static = "1.1.0"
2018-10-27 02:15:48 +00:00
log = "0.4"
2019-01-12 18:03:17 +00:00
parking_lot = { version = "0.7" }
gfx-hal = "0.1.0"
2019-02-14 19:08:19 +00:00
gfx-backend-empty = { version = "0.1.1" }
2019-01-12 18:03:17 +00:00
gfx-backend-vulkan = { version = "0.1.0", optional = true }
2019-01-18 03:32:34 +00:00
gfx-backend-dx11 = { version = "0.1.0", optional = true }
2019-01-12 18:03:17 +00:00
gfx-backend-dx12 = { version = "0.1.0", optional = true }
gfx-backend-metal = { version = "0.1.0", optional = true }
2018-11-11 19:02:40 +00:00
#rendy-memory = { git = "https://github.com/rustgd/rendy", rev = "ce7dd7f", features = ["gfx-hal"] }
winit = { version = "0.18", optional = true }