wgpu/wgpu-remote/Cargo.toml
kyren 8680195c91 Add gfx-backend-gl support
Also adds glutin-specific support methods to wgpu-native
2019-05-19 15:10:52 -04:00

27 lines
661 B
TOML

[package]
name = "wgpu-remote"
version = "0.1.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
]
edition = "2018"
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[features]
default = []
vulkan = ["wgpu-native/gfx-backend-vulkan"]
dx11 = ["wgpu-native/gfx-backend-dx11"]
dx12 = ["wgpu-native/gfx-backend-dx12"]
metal = ["wgpu-native/gfx-backend-metal"]
gl = ["wgpu-native/gfx-backend-gl"]
[dependencies]
wgpu-native = { path = "../wgpu-native", version = "0.2", features = ["remote"] }
ipc-channel = "0.12"
log = "0.4"
parking_lot = { version = "0.8" }
serde = { version = "1.0", features = ["serde_derive"] }