From 31a45c1369c8b3ec630e37014128acbb50fc970e Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Sun, 13 Jul 2025 17:11:25 +1200 Subject: [PATCH] Pin Tracy deps --- crates/bevy_log/Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 3dcfa27794..efb8c6b787 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -29,10 +29,12 @@ tracing-log = "0.2.0" tracing-error = { version = "0.2.0", optional = true } tracing = { version = "0.1", default-features = false, features = ["std"] } +# Pin deps for compatibility with Tracy v0.12.2. +# # Tracy dependency compatibility table: # https://github.com/nagisa/rust_tracy_client -tracing-tracy = { version = "0.11.4", optional = true } -tracy-client = { version = "0.18.0", optional = true } +tracing-tracy = { version = "=0.11.4", optional = true } +tracy-client = { version = "=0.18.2", optional = true } [target.'cfg(target_os = "android")'.dependencies] android_log-sys = "0.3.0"