wgpu/wgpu-native/Cargo.toml

34 lines
733 B
TOML
Raw Normal View History

[package]
name = "wgpu-native"
2019-11-03 23:52:57 +00:00
version = "0.4.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-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"
[dependencies]
2019-11-16 02:17:07 +00:00
lazy_static = "1.1"
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=[]}