forked from Traverse-Research/hassle-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 970 Bytes
/
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
[package]
name = "hassle-rs"
version = "0.10.0"
authors = ["Traverse-Research <[email protected]>"]
edition = "2018"
description = "HLSL compiler library, this crate provides an FFI layer and idiomatic rust wrappers for the new DXC HLSL compiler and validator."
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Traverse-Research/hassle-rs"
repository = "https://github.com/Traverse-Research/hassle-rs"
keywords = ["shader", "pipeline", "hlsl", "dxc", "intellisense"]
categories = ["rendering", "rendering::graphics-api"]
include = ["src", "LICENSE"]
documentation = "https://docs.rs/hassle-rs"
[dependencies]
bitflags = "2"
com = { version = "0.6", features = ["production"] }
libloading = "0.8"
thiserror = "1.0.2"
widestring = "1"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["wtypes", "oleauto", "combaseapi"] }
[target.'cfg(not(windows))'.dependencies]
libc = "0.2"
[dev-dependencies]
rspirv = "0.11"