portability/libportability-icd/Cargo.toml

22 lines
487 B
TOML
Raw Normal View History

[package]
name = "portability-icd"
2018-03-02 14:04:47 +11:00
publish = false
version = "0.1.0"
2018-03-02 14:04:47 +11:00
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
2018-03-15 08:24:26 +11:00
"Markus Siglreithmaier <m.siglreith@gmail.com>",
2018-03-02 14:04:47 +11:00
]
[lib]
name = "portability_icd"
crate-type = ["cdylib"]
[features]
default = []
2018-03-02 14:04:47 +11:00
dx12 = ["portability-gfx/gfx-backend-dx12"]
metal = ["portability-gfx/gfx-backend-metal"]
vulkan = ["portability-gfx/gfx-backend-vulkan"]
[dependencies]
2018-03-02 14:04:47 +11:00
portability-gfx = { path = "../libportability-gfx", features = ["dispatch"] }