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