2021-11-06 10:52:07 +11:00
|
|
|
[package]
|
|
|
|
name = "piet-gpu-tests"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Raph Levien <raph.levien@gmail.com>"]
|
|
|
|
description = "Tests for piet-gpu shaders and generic GPU capabilities."
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2021-11-24 02:28:50 +11:00
|
|
|
[features]
|
|
|
|
default = ["piet-gpu"]
|
|
|
|
|
2021-11-06 10:52:07 +11:00
|
|
|
[dependencies]
|
2022-09-22 10:20:34 +10:00
|
|
|
clap = "3.2.22"
|
2021-11-06 10:52:07 +11:00
|
|
|
bytemuck = "1.7.2"
|
2021-11-24 02:28:50 +11:00
|
|
|
kurbo = "0.7.1"
|
|
|
|
rand = "0.7.3"
|
2021-11-06 10:52:07 +11:00
|
|
|
|
|
|
|
[dependencies.piet-gpu-hal]
|
|
|
|
path = "../piet-gpu-hal"
|
2021-11-24 02:28:50 +11:00
|
|
|
|
|
|
|
[dependencies.piet-gpu]
|
|
|
|
path = "../piet-gpu"
|
|
|
|
optional = true
|