mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-25 16:25:25 +00:00
9697c22740
* Improve linker performance - this should loop over data significantly less * Remove Rc and RefCell because they weren't needed in the end * Moved some code into a DefUseAnalyer * Point to same rspirv * Link to rspirv git instead of locally
17 lines
357 B
TOML
17 lines
357 B
TOML
[package]
|
|
name = "rspirv-linker"
|
|
version = "0.1.0"
|
|
authors = ["Jasper Bekkers <bekkers@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rspirv = "0.7.0"
|
|
topological-sort = "0.1"
|
|
thiserror = "1.0.20"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1"
|
|
pretty_assertions = "0.6"
|