portability/libportability-icd/Cargo.toml

26 lines
628 B
TOML
Raw Normal View History

[package]
name = "portability-icd"
2018-03-01 22:04:47 -05:00
publish = false
version = "0.1.0"
2020-01-25 01:45:55 +01:00
edition = "2018"
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 = []
debug = ["portability-gfx/env_logger"]
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"]
#gl = ["portability-gfx/gfx-backend-gl"]
[dependencies]
2018-03-01 22:04:47 -05:00
portability-gfx = { path = "../libportability-gfx", features = ["dispatch"] }