2020-11-13 01:23:57 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_log"
|
2021-04-06 18:48:48 +00:00
|
|
|
version = "0.5.0"
|
2020-11-13 01:23:57 +00:00
|
|
|
edition = "2018"
|
|
|
|
authors = [
|
|
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
|
|
]
|
|
|
|
description = "Provides logging for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["bevy"]
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-06 18:48:48 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.5.0" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
2020-11-13 01:23:57 +00:00
|
|
|
|
|
|
|
tracing-subscriber = {version = "0.2.15", features = ["registry"]}
|
2020-12-03 00:14:02 +00:00
|
|
|
tracing-chrome = { version = "0.3.0", optional = true }
|
2020-11-13 01:23:57 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
|
|
android_log-sys = "0.2.0"
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
console_error_panic_hook = "0.1.6"
|
2021-03-03 21:01:41 +00:00
|
|
|
tracing-wasm = "0.2"
|
2021-04-22 23:30:48 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
bevy_internal = { path = "../bevy_internal", version = "0.5.0" }
|