wgpu/wgpu-native/Cargo.toml

30 lines
778 B
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"
2018-09-22 22:54:19 +00:00
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[features]
default = []
2018-11-26 22:25:14 +00:00
remote = []
[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"
gfx-backend-empty = "0.1.0"
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 }