2020-10-09 15:22:07 +00:00
|
|
|
[package]
|
|
|
|
name = "spirv-builder"
|
2021-08-12 10:46:32 +00:00
|
|
|
version = "0.4.0-alpha.12"
|
2020-10-25 15:15:04 +00:00
|
|
|
authors = ["Embark <opensource@embark-studios.com>"]
|
2020-10-09 15:22:07 +00:00
|
|
|
edition = "2018"
|
2020-10-25 15:15:04 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
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"]
|
2021-06-09 08:30:44 +00:00
|
|
|
watch = ["notify"]
|
2020-10-09 15:22:07 +00:00
|
|
|
|
|
|
|
[dependencies]
|
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"
|
2022-03-30 07:07:14 +00:00
|
|
|
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types" }
|
2020-10-09 18:01:35 +00:00
|
|
|
# See comment in lib.rs invoke_rustc for why this is here
|
2020-10-29 22:03:07 +00:00
|
|
|
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", default-features = false }
|
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 }
|