wgpu/wgpu-native/Cargo.toml

49 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "wgpu-native"
version = "0.2.6"
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-03-07 19:37:50 +00:00
local = []
2019-02-17 04:49:52 +00:00
remote = ["serde"]
metal-auto-capture = ["gfx-backend-metal/auto-capture"]
2019-08-16 22:07:42 +00:00
winit-empty = ["winit", "gfx-backend-empty/winit"]
winit-vulkan = ["winit", "gfx-backend-vulkan/winit"]
winit-dx12 = ["winit", "gfx-backend-dx12/winit"]
winit-dx11 = ["winit", "gfx-backend-dx11/winit"]
winit-metal = ["winit", "gfx-backend-metal/winit"]
glutin = ["winit", "gfx-backend-gl/glutin"]
[dependencies]
2019-02-26 03:25:34 +00:00
arrayvec = "0.4"
bitflags = "1.0"
copyless = "0.1"
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-08-10 07:20:07 +00:00
hal = { package = "gfx-hal", version = "0.3.0" }
2019-08-16 22:07:42 +00:00
gfx-backend-empty = { version = "0.3.0" }
gfx-backend-vulkan = { version = "0.3.0", features = ["x11"], optional = true }
gfx-backend-dx12 = { version = "0.3.0", optional = true }
gfx-backend-dx11 = { version = "0.3.0", optional = true }
gfx-backend-metal = { version = "0.3.0", optional = true }
gfx-backend-gl = { version = "0.3.0", optional = true }
2019-07-19 08:13:07 +00:00
parking_lot = { version = "0.9" }
rendy-memory = { version = "0.4" }
rendy-descriptor = { version = "0.4" }
2019-02-17 04:49:52 +00:00
serde = { version = "1.0", features = ["serde_derive"], optional = true }
2019-02-26 03:25:34 +00:00
vec_map = "0.8"
2019-05-13 14:59:09 +00:00
winit = { version = "0.19", optional = true }