From 5dbddbbbb940f463cadfbafc4cefbc0fcb49db3d Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Wed, 11 Nov 2020 14:18:17 -0800 Subject: [PATCH] fix builds --- Cargo.toml | 1 + crates/bevy_log/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9c1d2702cbc6e5..1658237ab0b0fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,6 +81,7 @@ serde = {version = "1", features = ["derive"]} # bevy (Android) [target.'cfg(target_os = "android")'.dependencies] android_logger = "0.9" +log = "0.4" ndk-glue = {version = "0.2", features = ["logger"]} [[example]] diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 8b06430597c1e6..fbb479a4f620c6 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../bevy_app", version = "0.3.0" } bevy_utils = { path = "../bevy_utils", version = "0.3.0" } tracing-subscriber = "0.2.15" -tracing-chrome = { git = "https://github.com/superdump/tracing-chrome", branch = "name.fields", optional = true} +tracing-chrome = { version = "0.2.0", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] console_error_panic_hook = "0.1.6"