diff --git a/Cargo.lock b/Cargo.lock index 334ac61..212e341 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5496,6 +5496,7 @@ dependencies = [ "tracing", "tracing-subscriber", "tracing-tracy", + "tracy-client", "vulkano", "waynest", "wgpu-hal", @@ -6107,9 +6108,9 @@ dependencies = [ [[package]] name = "tracy-client" -version = "0.18.2" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef54005d3d760186fd662dad4b7bb27ecd5531cdef54d1573ebd3f20a9205ed7" +checksum = "d90a2c01305b02b76fdd89ac8608bae27e173c829a35f7d76a345ab5d33836db" dependencies = [ "loom", "once_cell", @@ -6118,9 +6119,9 @@ dependencies = [ [[package]] name = "tracy-client-sys" -version = "0.26.0" +version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f9612d9503675b07b244922ea6f6f3cdd88c43add1b3498084613fc88cdf69d" +checksum = "69fff37da548239c3bf9e64a12193d261e8b22b660991c6fd2df057c168f435f" dependencies = [ "cc", "windows-targets 0.52.6", diff --git a/Cargo.toml b/Cargo.toml index 09b08dc..02d4f1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,15 +23,15 @@ path = "src/main.rs" [features] default = ["wayland"] wayland = [ - "dep:cluFlock", - "dep:waynest", - "dep:tokio-stream", - "dep:memmap2", - "dep:drm-fourcc", - "dep:memfd", - "dep:vulkano", - "dep:wgpu-hal", - "dep:ash", + "dep:cluFlock", + "dep:waynest", + "dep:tokio-stream", + "dep:memmap2", + "dep:drm-fourcc", + "dep:memfd", + "dep:vulkano", + "dep:wgpu-hal", + "dep:ash", ] profile_tokio = ["dep:console-subscriber", "tokio/tracing"] profile_app = ["dep:tracing-tracy", "bevy/trace_tracy", "bevy/trace"] @@ -74,6 +74,7 @@ thiserror = "2.0.11" tracing = { version = "0.1.40", features = ["release_max_level_warn"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing-tracy = { version = "0.11.1", optional = true } +tracy-client = { version = "=0.18.0" } # (de)serialization serde = { version = "1.0.205", features = ["derive"] } @@ -87,28 +88,28 @@ tokio = { version = "1.39.2", features = ["rt-multi-thread", "signal", "time"] } # bevy bevy = { version = "0.16", default-features = false, features = [ - "bevy_asset", - "bevy_audio", - "bevy_color", - "bevy_core_pipeline", - "bevy_gizmos", - "bevy_gltf", - "bevy_log", - "bevy_pbr", - "bevy_render", - "bevy_window", - "bevy_winit", - "std", - "x11", - "wayland", - "mp3", - "wav", - "qoi", - "png", - "hdr", - "jpeg", - "tonemapping_luts", - "multi_threaded", + "bevy_asset", + "bevy_audio", + "bevy_color", + "bevy_core_pipeline", + "bevy_gizmos", + "bevy_gltf", + "bevy_log", + "bevy_pbr", + "bevy_render", + "bevy_window", + "bevy_winit", + "std", + "x11", + "wayland", + "mp3", + "wav", + "qoi", + "png", + "hdr", + "jpeg", + "tonemapping_luts", + "multi_threaded", ] } bevy_mod_xr = "0.3" bevy_mod_openxr = "0.3" @@ -138,9 +139,9 @@ cluFlock = { version = "1.2.7", optional = true } # for the lockfile checking # "tracing", # ], default-features = false, optional = true } waynest = { git = "https://github.com/technobaboo/waynest.git", branch = "fix/fd_clear", features = [ - "server", - "stable", - "tracing", + "server", + "stable", + "tracing", ], default-features = false, optional = true } tokio-stream = { version = "0.1.17", optional = true } memmap2 = { version = "0.9.5", optional = true }