mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-22 14:56:27 +00:00
805297146b
* Changed version of all unpublished crates to 0.0.0 * New version: v0.4.0-alpha.14 * Fixed versions in deny.toml
27 lines
982 B
TOML
27 lines
982 B
TOML
[package]
|
|
name = "spirv-builder"
|
|
version = "0.4.0-alpha.14"
|
|
authors = ["Embark <opensource@embark-studios.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/EmbarkStudios/rust-gpu"
|
|
description = "Helper for building shaders with rust-gpu"
|
|
|
|
# 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"]
|
|
watch = ["notify"]
|
|
|
|
[dependencies]
|
|
memchr = "2.4"
|
|
raw-string = "0.3.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "0.4.0-alpha.14" }
|
|
# See comment in lib.rs invoke_rustc for why this is here
|
|
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", version = "0.4.0-alpha.14", default-features = false }
|
|
|
|
notify = { version = "5.0.0-pre.11", optional = true }
|