1
0
Fork 0
forked from wry/wry

all: use tracy for tracing

This commit is contained in:
Julian Orth 2024-09-15 18:08:54 +02:00
parent 50186e764e
commit ccad3cf0fb
56 changed files with 647 additions and 171 deletions

View file

@ -58,6 +58,14 @@ gpu-alloc-ash = "0.7.0"
serde = { version = "1.0.196", features = ["derive"] }
enum-map = "2.7.3"
png = "0.17.13"
rustc-demangle = { version = "0.1.24", optional = true }
[dependencies.tracy-client-sys]
version = "0.24.0"
git = "https://github.com/mahkoh/rust_tracy_client.git"
branch = "jorth/debuginfod"
features = ["ondemand", "manual-lifetime"]
optional = true
[build-dependencies]
repc = "0.1.1"
@ -78,3 +86,4 @@ opt-level = 3
[features]
rc_tracking = []
it = []
tracy = ["dep:tracy-client-sys", "dep:rustc-demangle"]