mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 16:24:24 +00:00
30 lines
778 B
TOML
30 lines
778 B
TOML
[package]
|
|
name = "wgpu-native"
|
|
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 = []
|
|
remote = []
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
lazy_static = "1.1.0"
|
|
log = "0.4"
|
|
parking_lot = { version = "0.7" }
|
|
gfx-hal = "0.1.0"
|
|
gfx-backend-empty = "0.1.0"
|
|
gfx-backend-vulkan = { version = "0.1.0", optional = true }
|
|
gfx-backend-dx11 = { version = "0.1.0", optional = true }
|
|
gfx-backend-dx12 = { version = "0.1.0", optional = true }
|
|
gfx-backend-metal = { version = "0.1.0", optional = true }
|
|
#rendy-memory = { git = "https://github.com/rustgd/rendy", rev = "ce7dd7f", features = ["gfx-hal"] }
|
|
winit = { version = "0.18", optional = true }
|