portability/libportability-icd/Cargo.toml

23 lines
531 B
TOML
Raw Normal View History

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