2018-09-19 01:14:04 +00:00
|
|
|
[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-19 01:14:04 +00:00
|
|
|
|
2018-09-22 22:54:19 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
|
2018-09-19 01:14:04 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2018-11-26 22:25:14 +00:00
|
|
|
remote = []
|
2018-09-19 01:14:04 +00:00
|
|
|
|
|
|
|
[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 }
|
|
|
|
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"] }
|
2019-01-17 14:42:59 +00:00
|
|
|
winit = { version = "0.18", optional = true }
|