Skip to content

Commit 4e9590a

Browse files
Update tracing-tracy requirement from 0.10.4 to 0.11.0 and tracy-client requirement from 0.16.4 to 0.17.0 (#11678)
# Objective - Update `tracing-tracy`. - Closes #11598. ## Solution - Bump `tracing-tracy` to 0.11.0 and `tracy-client` alongside it to 0.17.0 to avoid duplicating that dependency in the deps tree. - `TracyLayer` is now configurable on creation, so use the default config. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 694c06f commit 4e9590a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/bevy_log/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ tracing-error = { version = "0.2.0", optional = true }
2727

2828
# Tracy dependency compatibility table:
2929
# https://github.com/nagisa/rust_tracy_client
30-
tracing-tracy = { version = "0.10.4", optional = true }
31-
tracy-client = { version = "0.16.4", optional = true }
30+
tracing-tracy = { version = "0.11.0", optional = true }
31+
tracy-client = { version = "0.17.0", optional = true }
3232

3333
[target.'cfg(target_os = "android")'.dependencies]
3434
android_log-sys = "0.3.0"

crates/bevy_log/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ impl Plugin for LogPlugin {
173173
};
174174

175175
#[cfg(feature = "tracing-tracy")]
176-
let tracy_layer = tracing_tracy::TracyLayer::new();
176+
let tracy_layer = tracing_tracy::TracyLayer::default();
177177

178178
let fmt_layer = tracing_subscriber::fmt::Layer::default().with_writer(std::io::stderr);
179179

0 commit comments

Comments
 (0)