rust-gpu/rspirv-linker/Cargo.toml
Jasper Bekkers 9697c22740
Linker perf (#33)
* 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
2020-09-17 10:55:44 +02:00

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"