portability/libportability-icd/Cargo.toml

26 lines
627 B
TOML
Raw Normal View History

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