From 659b42e81363b96cb127bd1a66ea9a7612bccf63 Mon Sep 17 00:00:00 2001 From: Imbris Date: Fri, 18 Jun 2021 03:26:35 -0400 Subject: [PATCH] Remove tracy features that are no longer needed now that macros have been fixed --- client/Cargo.toml | 1 - common/Cargo.toml | 1 - common/ecs/Cargo.toml | 1 - common/frontend/Cargo.toml | 2 +- common/net/Cargo.toml | 1 - common/state/Cargo.toml | 1 - common/systems/Cargo.toml | 1 - server-cli/Cargo.toml | 2 +- server/Cargo.toml | 1 - voxygen/Cargo.toml | 2 +- world/Cargo.toml | 1 - 11 files changed, 3 insertions(+), 11 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 5b59f0f179..7e3877a9e8 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -5,7 +5,6 @@ authors = ["Joshua Barretto "] edition = "2018" [features] -tracy = ["common/tracy", "common-base/tracy", "common-state/tracy", "common-systems/tracy", "common-net/tracy", "common-frontend/tracy"] simd = ["vek/platform_intrinsics"] plugins = ["common-state/plugins"] bin_bot = ["common-ecs", "serde", "ron", "clap", "rustyline", "common-frontend", "async-channel"] diff --git a/common/Cargo.toml b/common/Cargo.toml index ebc46b92bd..ab7811d778 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -6,7 +6,6 @@ edition = "2018" [features] no-assets = [] -tracy = ["common-base/tracy"] simd = ["vek/platform_intrinsics"] bin_csv = ["ron", "csv", "structopt"] bin_graphviz = ["petgraph"] diff --git a/common/ecs/Cargo.toml b/common/ecs/Cargo.toml index 687949a9df..17d39592ac 100644 --- a/common/ecs/Cargo.toml +++ b/common/ecs/Cargo.toml @@ -5,7 +5,6 @@ name = "veloren-common-ecs" version = "0.10.0" [features] -tracy = ["common-base/tracy"] [dependencies] diff --git a/common/frontend/Cargo.toml b/common/frontend/Cargo.toml index fcde12a404..c3091bf29e 100644 --- a/common/frontend/Cargo.toml +++ b/common/frontend/Cargo.toml @@ -19,4 +19,4 @@ tracing-log = "0.1.1" tracing-subscriber = { version = "0.2.3", default-features = false, features = ["env-filter", "fmt", "chrono", "ansi", "smallvec", "tracing-log"]} # Tracy -tracing-tracy = { version = "0.6.0", optional = true } \ No newline at end of file +tracing-tracy = { version = "0.6.0", optional = true } diff --git a/common/net/Cargo.toml b/common/net/Cargo.toml index 5700672819..74ae0304d4 100644 --- a/common/net/Cargo.toml +++ b/common/net/Cargo.toml @@ -5,7 +5,6 @@ name = "veloren-common-net" version = "0.10.0" [features] -tracy = ["common/tracy"] simd = ["vek/platform_intrinsics"] default = ["simd"] diff --git a/common/state/Cargo.toml b/common/state/Cargo.toml index f613bb9a3c..de24d09f7a 100644 --- a/common/state/Cargo.toml +++ b/common/state/Cargo.toml @@ -5,7 +5,6 @@ name = "veloren-common-state" version = "0.10.0" [features] -tracy = ["common/tracy"] simd = ["vek/platform_intrinsics"] plugins = ["toml", "tar", "wasmer", "bincode", "plugin-api", "serde"] diff --git a/common/systems/Cargo.toml b/common/systems/Cargo.toml index 8f1bacdf86..23cc60178e 100644 --- a/common/systems/Cargo.toml +++ b/common/systems/Cargo.toml @@ -5,7 +5,6 @@ name = "veloren-common-systems" version = "0.10.0" [features] -tracy = ["common/tracy"] simd = ["vek/platform_intrinsics"] default = ["simd"] diff --git a/server-cli/Cargo.toml b/server-cli/Cargo.toml index 193fe74446..10636a8ad0 100644 --- a/server-cli/Cargo.toml +++ b/server-cli/Cargo.toml @@ -17,7 +17,7 @@ This package includes the official server CLI. [features] worldgen = ["server/worldgen"] default = ["worldgen"] -tracy = ["common/tracy", "server/tracy", "common-net/tracy", "common-frontend/tracy"] +tracy = ["common-frontend/tracy"] plugins = ["server/plugins"] [dependencies] diff --git a/server/Cargo.toml b/server/Cargo.toml index 455a38147e..4236c3d887 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -6,7 +6,6 @@ edition = "2018" [features] worldgen = [] -tracy = ["common/tracy", "common-base/tracy", "common-ecs/tracy", "common-state/tracy", "common-net/tracy", "world/tracy"] simd = ["vek/platform_intrinsics"] plugins = ["common-state/plugins"] diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 70cb8f3b90..dfc7fcb121 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -25,7 +25,7 @@ buildInputs = ["xorg.libxcb"] hot-anim = ["anim/use-dyn-lib"] singleplayer = ["server"] simd = ["vek/platform_intrinsics"] -tracy = ["profiling", "profiling/profile-with-tracy", "common/tracy", "common-ecs/tracy", "common-frontend/tracy", "common-net/tracy", "common-systems/tracy", "common-state/tracy", "client/tracy"] +tracy = ["profiling", "profiling/profile-with-tracy", "common-frontend/tracy"] plugins = ["client/plugins"] default = ["singleplayer", "native-dialog", "plugins", "simd"] diff --git a/world/Cargo.toml b/world/Cargo.toml index 07b4084e78..4beef26bd3 100644 --- a/world/Cargo.toml +++ b/world/Cargo.toml @@ -5,7 +5,6 @@ authors = ["Joshua Barretto "] edition = "2018" [features] -tracy = ["common/tracy", "common-net/tracy"] simd = ["vek/platform_intrinsics"] bin_compression = ["lz-fear", "deflate", "flate2", "image/jpeg", "num-traits"]