mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-10-31 06:21:44 +00:00
8680195c91
Also adds glutin-specific support methods to wgpu-native
27 lines
661 B
TOML
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"] }
|