2020-04-06 07:12:54 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_diagnostic"
|
2024-02-21 20:58:59 +00:00
|
|
|
version = "0.14.0-dev"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-08-10 00:24:27 +00:00
|
|
|
description = "Provides diagnostic functionality for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-10 00:24:27 +00:00
|
|
|
keywords = ["bevy"]
|
2020-04-06 07:12:54 +00:00
|
|
|
|
2023-01-22 20:41:28 +00:00
|
|
|
[features]
|
|
|
|
# Disables diagnostics that are unsupported when Bevy is dynamically linked
|
2023-01-23 14:28:00 +00:00
|
|
|
dynamic_linking = []
|
2024-02-28 20:00:42 +00:00
|
|
|
sysinfo_plugin = ["sysinfo"]
|
|
|
|
features = []
|
2020-06-28 07:45:35 +00:00
|
|
|
|
2020-04-06 07:12:54 +00:00
|
|
|
[dependencies]
|
2020-08-10 00:39:28 +00:00
|
|
|
# bevy
|
2024-02-21 20:58:59 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.14.0-dev" }
|
|
|
|
bevy_core = { path = "../bevy_core", version = "0.14.0-dev" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-dev" }
|
|
|
|
bevy_time = { path = "../bevy_time", version = "0.14.0-dev" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.14.0-dev" }
|
2022-12-26 15:16:46 +00:00
|
|
|
|
2024-01-20 15:42:51 +00:00
|
|
|
const-fnv1a-hash = "1.1.0"
|
|
|
|
|
2022-12-26 15:16:46 +00:00
|
|
|
# MacOS
|
|
|
|
[target.'cfg(all(target_os="macos"))'.dependencies]
|
|
|
|
# Some features of sysinfo are not supported by apple. This will disable those features on apple devices
|
2024-02-28 20:00:42 +00:00
|
|
|
sysinfo = { version = "0.30.0", optional = true, default-features = false, features = [
|
2023-11-21 01:04:14 +00:00
|
|
|
"apple-app-store",
|
2022-12-26 15:16:46 +00:00
|
|
|
] }
|
|
|
|
|
|
|
|
# Only include when not bevy_dynamic_plugin and on linux/windows/android
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "windows", target_os = "android"))'.dependencies]
|
2024-02-28 20:00:42 +00:00
|
|
|
sysinfo = { version = "0.30.0", optional = true, default-features = false }
|
2023-11-18 20:58:48 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|