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
61 lines
2.2 KiB
TOML
61 lines
2.2 KiB
TOML
[package]
|
|
name = "rustc_codegen_spirv"
|
|
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 = "SPIR-V code generator backend for rustc"
|
|
#keywords = []
|
|
#categories = []
|
|
#readme = "README.md"
|
|
|
|
[lib]
|
|
crate-type = ["dylib"]
|
|
|
|
[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"]
|
|
|
|
[dependencies]
|
|
# HACK(eddyb) these only exist to unify features across dependency trees,
|
|
# in order to avoid multiple separate instances of `rustc_codegen_spirv`.
|
|
hashbrown = { version = "0.11", features = ["default"] }
|
|
libc = { version = "0.2", features = ["align", "extra_traits"] }
|
|
num-traits = { version = "0.2", features = ["libm"] }
|
|
syn = { version = "1", features = ["visit", "visit-mut"] }
|
|
|
|
# Normal dependencies.
|
|
ar = "0.9.0"
|
|
bimap = "0.6"
|
|
indexmap = "1.6.0"
|
|
rspirv = "0.11"
|
|
rustc-demangle = "0.1.21"
|
|
sanitize-filename = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
smallvec = "1.6.1"
|
|
spirv-tools = { version = "0.8", default-features = false }
|
|
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "0.4.0-alpha.14" }
|
|
|
|
[dev-dependencies]
|
|
pipe = "0.4"
|
|
pretty_assertions = "1.0"
|
|
tempfile = "3.2"
|
|
|
|
# Note that in order to use RA and have access to `rustc_*` crates, you also
|
|
# need to set `"rust-analyzer.rustcSource": "discover"` in e.g. VSCode.
|
|
[package.metadata.rust-analyzer]
|
|
# This crate uses #[feature(rustc_private)]
|
|
rustc_private = true
|