From 12e0b80cd0d2d937288b3ec1c19f974d3b633d72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Wed, 10 Nov 2021 22:56:14 +0000 Subject: [PATCH] fix tracing-subscriber to `=0.2.24` (#3102) temporary fix until rest of ecosystem is updated --- crates/bevy_log/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index eafa77e51b4d5..e535408ee6608 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -13,8 +13,8 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "0.5.0" } -tracing-subscriber = {version = "0.2.22", features = ["registry"]} -tracing-chrome = { version = "0.3.1", optional = true } +tracing-subscriber = {version = "=0.2.24", features = ["registry"]} +tracing-chrome = { version = "=0.3.1", optional = true } tracing-tracy = { version = "0.7.0", optional = true } [target.'cfg(target_os = "android")'.dependencies] @@ -22,7 +22,7 @@ android_log-sys = "0.2.0" [target.'cfg(target_arch = "wasm32")'.dependencies] console_error_panic_hook = "0.1.6" -tracing-wasm = "0.2" +tracing-wasm = "=0.2.0" [dev-dependencies] bevy_internal = { path = "../bevy_internal", version = "0.5.0" }