blob: 398610d99e7c1beee4b867841e0c741b6398ed9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[package]
name = "spirv_cross"
version = "0.22.0"
license = "MIT/Apache-2.0"
edition = "2018"
[features]
glsl = ["spirv-cross-internal/glsl"]
hlsl = ["spirv-cross-internal/hlsl"]
msl = ["spirv-cross-internal/msl"]
[lib]
crate-type = ["rlib"]
path = "lib.rs"
[dependencies]
spirv-cross-internal = { path = "../spirv_cross" }
|