Allow building Rojo with profile-with-tracy feature (#862)

This commit is contained in:
Micah
2024-02-20 14:56:55 -08:00
committed by GitHub
parent 02d79a4749
commit 42121a9fc9
3 changed files with 11 additions and 31 deletions

View File

@@ -26,7 +26,9 @@ default = []
# Enable this feature to live-reload assets from the web UI.
dev_live_assets = []
profile-with-tracy = ["profiling/profile-with-tracy", "tracy-client"]
# Run Rojo with this feature to open a Tracy session.
# Currently uses protocol v63, last supported in Tracy 0.9.1.
profile-with-tracy = ["profiling/profile-with-tracy"]
[workspace]
members = ["crates/*"]
@@ -87,8 +89,7 @@ thiserror = "1.0.30"
tokio = { version = "1.12.0", features = ["rt", "rt-multi-thread"] }
uuid = { version = "1.0.0", features = ["v4", "serde"] }
clap = { version = "3.1.18", features = ["derive"] }
profiling = "1.0.6"
tracy-client = { version = "0.13.2", optional = true }
profiling = "1.0.14"
[target.'cfg(windows)'.dependencies]
winreg = "0.10.1"