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"