mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-22 14:56:27 +00:00
ad610b57f5
* Move top-level crates to crates/ directory * Update docs * Update test.sh * Update docs.sh * Update clippy.sh
24 lines
645 B
TOML
24 lines
645 B
TOML
[package]
|
|
name = "spirv-tools"
|
|
version = "0.1.0"
|
|
authors = ["Embark <opensource@embark-studios.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
use-installed-tools = ["spirv-tools-sys/use-installed-tools", "memchr", "tempfile"]
|
|
use-compiled-tools = ["spirv-tools-sys/use-compiled-tools"]
|
|
|
|
[dependencies]
|
|
spirv-tools-sys = { path = "../spirv-tools-sys", default-features = false }
|
|
# Used for parsing output when running binaries
|
|
memchr = { version = "2.3", optional = true }
|
|
tempfile = { version = "3.1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
structopt = "0.3"
|
|
|
|
[[example]]
|
|
name = "as"
|
|
required-features = ["use-compiled-tools"]
|