mirror of
https://github.com/bevyengine/bevy
synced 2024-11-13 00:17:27 +00:00
2f4bcc5bf7
# Objective - update for Edition 2021 ## Solution - remove the `resolver = "2"` - update for https://doc.rust-lang.org/edition-guide/rust-2021/reserving-syntax.html by adding a few ` `
27 lines
476 B
TOML
27 lines
476 B
TOML
[package]
|
|
name = "benches"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
edition = "2021"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
bevy = { path = "../" }
|
|
|
|
[[bench]]
|
|
name = "system_stage"
|
|
path = "benches/bevy_ecs/stages.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "commands"
|
|
path = "benches/bevy_ecs/commands.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "iter"
|
|
path = "benches/bevy_tasks/iter.rs"
|
|
harness = false
|