forked from Kjolnyr/bevy_app_compute
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (34 loc) · 918 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "bevy_app_compute"
version = "0.13.0"
authors = ["Kjolnyr <[email protected]>"]
edition = "2021"
description = "App compute plugin for Bevy"
repository = "https://github.com/Kjolnyr/bevy_app_compute"
homepage = "https://github.com/Kjolnyr/bevy_app_compute"
documentation = "https://docs.rs/bevy_app_compute"
license = "MIT OR Apache-2.0"
readme = "README.md"
categories = ["game-development"]
[lib]
doctest = false
[dependencies]
bevy = "0.13"
parking_lot = "0.12.1"
wgpu = { version = "0.19.1", features = ["naga"] }
bytemuck = "1.4.0"
naga = { version = "0.19.0", features = ["wgsl-in"] }
naga_oil = { version = "0.13.0", default-features = false, features = [
"test_shader",
] }
[dev-dependencies]
rand = "0.8.5"
bevy = { version = "0.13", features = ["wayland"] }
[[example]]
name = "simple"
[[example]]
name = "multi_pass"
[[example]]
name = "one_shot"
[[example]]
name = "boids"