2020-11-13 01:23:57 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_log"
|
2022-03-19 03:54:15 +00:00
|
|
|
version = "0.7.0-dev"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-11-13 01:23:57 +00:00
|
|
|
description = "Provides logging 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-11-13 01:23:57 +00:00
|
|
|
keywords = ["bevy"]
|
|
|
|
|
2022-02-28 22:27:20 +00:00
|
|
|
[features]
|
|
|
|
trace = [ "tracing-error" ]
|
|
|
|
|
2020-11-13 01:23:57 +00:00
|
|
|
[dependencies]
|
2022-03-19 03:54:15 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.7.0-dev" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" }
|
2020-11-13 01:23:57 +00:00
|
|
|
|
2021-11-12 03:08:27 +00:00
|
|
|
tracing-subscriber = {version = "0.3.1", features = ["registry", "env-filter"]}
|
|
|
|
tracing-chrome = { version = "0.4.0", optional = true }
|
|
|
|
tracing-tracy = { version = "0.8.0", optional = true }
|
2021-06-28 19:23:45 +00:00
|
|
|
tracing-log = "0.1.2"
|
2022-02-28 22:27:20 +00:00
|
|
|
tracing-error = { version = "0.2.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-11-12 03:08:27 +00:00
|
|
|
tracing-wasm = "0.2.1"
|
2021-04-22 23:30:48 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-19 03:54:15 +00:00
|
|
|
bevy_internal = { path = "../bevy_internal", version = "0.7.0-dev" }
|