2018-09-19 01:14:04 +00:00
|
|
|
[package]
|
|
|
|
name = "wgpu-native"
|
2019-11-03 23:52:57 +00:00
|
|
|
version = "0.4.0"
|
2018-09-19 01:14:04 +00:00
|
|
|
authors = [
|
|
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
|
|
|
"Joshua Groves <josh@joshgroves.com>",
|
|
|
|
]
|
2019-01-12 18:58:24 +00:00
|
|
|
edition = "2018"
|
2019-01-24 15:39:51 +00:00
|
|
|
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-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 = []
|
2019-11-16 02:17:07 +00:00
|
|
|
#metal-auto-capture = ["gfx-backend-metal/auto-capture"]
|
|
|
|
vulkan-portability = ["core/gfx-backend-vulkan"]
|
|
|
|
|
|
|
|
[dependencies.core]
|
|
|
|
path = "../wgpu-core"
|
|
|
|
package = "wgpu-core"
|
|
|
|
version = "0.1"
|
2018-09-19 01:14:04 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-11-16 02:17:07 +00:00
|
|
|
lazy_static = "1.1"
|
2019-08-21 01:27:03 +00:00
|
|
|
parking_lot = "0.9"
|
2019-11-16 02:17:07 +00:00
|
|
|
raw-window-handle = "0.3"
|
2020-01-01 15:49:00 +00:00
|
|
|
libc = {version="0.2", features=[]}
|
|
|
|
|