-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
61 lines (54 loc) · 1.42 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "spirv-reflect"
version = "0.2.3"
authors = ["Graham Wihlidal <[email protected]>"]
description = "Reflection API in rust for SPIR-V shader byte code, intended for Vulkan applications."
homepage = "https://github.com/gwihlidal/spirv-reflect-rs"
repository = "https://github.com/gwihlidal/spirv-reflect-rs"
documentation = "https://docs.rs/spirv-reflect"
readme = "README.md"
keywords = ["shader", "spirv", "glsl", "hlsl", "reflect"]
categories = ["rendering", "rendering::engine", ]
license = "MIT/Apache-2.0"
build = "build.rs"
include = [
"src/types/descriptor.rs",
"src/types/image.rs",
"src/types/mod.rs",
"src/types/op.rs",
"src/types/resource.rs",
"src/types/traits.rs",
"src/types/variable.rs",
"src/convert.rs",
"src/ffi.rs",
"src/lib.rs",
"gen/bindings.rs",
"build.rs",
"Cargo.toml",
"vendor/spirv_reflect.h",
"vendor/spirv_reflect.c",
"vendor/include/spirv/unified1/spirv.h",
]
edition = "2018"
[badges]
travis-ci = { repository = "gwihlidal/spirv-reflect-rs" }
maintenance = { status = "actively-developed" }
[dependencies]
bitflags = "1.2.1"
spirv = "0.2"
num-traits = "0.2.8"
serde = "1.0"
serde_derive = "1.0.102"
[dev-dependencies]
serde_yaml = "0.8.11"
[build-dependencies]
cc = "1.0.46"
[build-dependencies.bindgen]
version = "0.69"
optional = true
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
[features]
generate_bindings=["bindgen"]