mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 00:47:32 +00:00
b28365f966
* move print diagnostics to log * entity count diagnostic * asset count diagnostic * remove useless `pub`s * use `BTreeMap` instead of `HashMap` * get entity count from world * keep ordered list of diagnostics
25 lines
702 B
TOML
25 lines
702 B
TOML
[package]
|
|
name = "bevy_diagnostic"
|
|
version = "0.4.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "Provides diagnostic functionality for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.4.0" }
|
|
bevy_core = { path = "../bevy_core", version = "0.4.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" }
|
|
bevy_log = { path = "../bevy_log", version = "0.4.0" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.4.0" }
|
|
|
|
# other
|
|
parking_lot = "0.11.0"
|