2020-07-24 10:37:14 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_codegen_spirv"
|
2021-02-16 13:00:52 +00:00
|
|
|
version = "0.3.0-alpha.0"
|
2020-08-17 22:17:24 +00:00
|
|
|
authors = ["Embark <opensource@embark-studios.com>"]
|
2020-07-24 10:37:14 +00:00
|
|
|
edition = "2018"
|
2020-08-17 22:17:24 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/EmbarkStudios/rust-gpu"
|
|
|
|
#keywords = []
|
|
|
|
#categories = []
|
|
|
|
#readme = "README.md"
|
2020-07-24 10:37:14 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
2020-10-29 22:03:07 +00:00
|
|
|
[features]
|
|
|
|
# By default, the use-compiled-tools is enabled, as doesn't require additional
|
|
|
|
# setup steps for the user. This does however mean that you will need to disable
|
|
|
|
# default features and explicitly enable `use-installed-tools` if you are using
|
|
|
|
# this in an environment with spirv-tools in PATH, and you don't want to take
|
|
|
|
# the compile time cost
|
|
|
|
default = ["use-compiled-tools"]
|
|
|
|
# If enabled, uses spirv-tools binaries installed in PATH, instead of
|
|
|
|
# compiling and linking the spirv-tools C++ code
|
|
|
|
use-installed-tools = ["spirv-tools/use-installed-tools"]
|
|
|
|
# If enabled will compile and link the C++ code for the spirv tools, the compiled
|
|
|
|
# version is preferred if both this and `use-installed-tools` are enabled
|
|
|
|
use-compiled-tools = ["spirv-tools/use-compiled-tools"]
|
|
|
|
|
2020-07-24 10:37:14 +00:00
|
|
|
[dependencies]
|
2021-01-11 09:08:02 +00:00
|
|
|
bimap = "0.6"
|
2020-12-02 11:05:04 +00:00
|
|
|
indexmap = "1.6.0"
|
2021-02-18 13:08:58 +00:00
|
|
|
rspirv = { git = "https://github.com/gfx-rs/rspirv.git", rev = "279cc519166b6a0b8c51d8f130949f75031e29fe" }
|
2020-11-20 13:54:26 +00:00
|
|
|
rustc-demangle = "0.1.18"
|
2020-12-03 16:14:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-02-02 12:20:10 +00:00
|
|
|
spirv-tools = { version = "0.4.0", default-features = false }
|
2020-10-24 14:57:06 +00:00
|
|
|
tar = "0.4.30"
|
2020-10-19 08:18:56 +00:00
|
|
|
topological-sort = "0.1"
|
2020-08-11 11:14:18 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-11 09:08:02 +00:00
|
|
|
pipe = "0.4"
|
2020-08-11 11:14:18 +00:00
|
|
|
pretty_assertions = "0.6"
|
2020-09-10 14:37:12 +00:00
|
|
|
tempfile = "3.1"
|