2020-10-09 15:22:07 +00:00
|
|
|
[package]
|
|
|
|
name = "spirv-builder"
|
2022-08-11 12:02:34 +00:00
|
|
|
description = "Helper for building shaders with rust-gpu"
|
2022-12-19 13:17:51 +00:00
|
|
|
# Documentation currently fails on docs.rs, but it doesn't have to. See https://github.com/EmbarkStudios/rust-gpu/issues/970
|
|
|
|
documentation = "https://embarkstudios.github.io/rust-gpu/api/spirv_builder/index.html"
|
2022-11-22 14:28:53 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
2020-10-09 15:22:07 +00:00
|
|
|
|
2020-10-29 22:03:07 +00:00
|
|
|
# See rustc_codegen_spirv/Cargo.toml for details on these features
|
|
|
|
[features]
|
|
|
|
default = ["use-compiled-tools"]
|
|
|
|
use-installed-tools = ["rustc_codegen_spirv/use-installed-tools"]
|
|
|
|
use-compiled-tools = ["rustc_codegen_spirv/use-compiled-tools"]
|
2022-09-23 09:35:23 +00:00
|
|
|
skip-toolchain-check = ["rustc_codegen_spirv/skip-toolchain-check"]
|
2021-06-09 08:30:44 +00:00
|
|
|
watch = ["notify"]
|
2020-10-09 15:22:07 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 14:28:53 +00:00
|
|
|
rustc_codegen_spirv-types.workspace = true
|
|
|
|
# See comment in lib.rs invoke_rustc for why this is here
|
2022-11-22 15:18:03 +00:00
|
|
|
rustc_codegen_spirv.workspace = true
|
2021-06-17 15:06:26 +00:00
|
|
|
memchr = "2.4"
|
2020-10-10 10:25:05 +00:00
|
|
|
raw-string = "0.3.5"
|
2020-10-09 18:01:35 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-06-09 08:30:44 +00:00
|
|
|
|
2021-08-12 11:42:16 +00:00
|
|
|
notify = { version = "5.0.0-pre.11", optional = true }
|