mirror of
https://github.com/bevyengine/bevy
synced 2025-01-07 02:38:59 +00:00
21 lines
524 B
TOML
21 lines
524 B
TOML
|
[package]
|
||
|
name = "crevice-tests"
|
||
|
version = "0.1.0"
|
||
|
edition = "2018"
|
||
|
|
||
|
[features]
|
||
|
wgpu-validation = ["wgpu", "naga", "futures"]
|
||
|
|
||
|
[dependencies]
|
||
|
crevice = { path = ".." }
|
||
|
crevice-derive = { path = "../crevice-derive", features = ["debug-methods"] }
|
||
|
|
||
|
anyhow = "1.0.44"
|
||
|
bytemuck = "1.7.2"
|
||
|
memoffset = "0.6.4"
|
||
|
mint = "0.5.5"
|
||
|
|
||
|
futures = { version = "0.3.17", features = ["executor"], optional = true }
|
||
|
naga = { version = "0.7.0", features = ["glsl-in", "wgsl-out"], optional = true }
|
||
|
wgpu = { version = "0.11.0", optional = true }
|