mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
578a5b1b88
Closes #1472.
25 lines
446 B
TOML
25 lines
446 B
TOML
[package]
|
|
name = "benches"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
bevy = { path = "../" }
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
path = "benches/bevy_ecs/bench.rs"
|
|
harness = false
|
|
required-features = ["macros"]
|
|
|
|
[[bench]]
|
|
name = "system_stage"
|
|
path = "benches/bevy_ecs/stages.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "iter"
|
|
path = "benches/bevy_tasks/iter.rs"
|
|
harness = false
|