faster builds: remove tracing-attributes feature from tracing

This commit is contained in:
Emil Ernerfeldt 2022-07-04 00:11:08 +02:00
parent 0f0031ebbb
commit c062bca6ee
7 changed files with 7 additions and 7 deletions

View file

@ -65,7 +65,7 @@ egui = { version = "0.18.0", path = "../egui", default-features = false, feature
"bytemuck",
"tracing",
] }
tracing = "0.1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
#! ### Optional dependencies
## Enable this when generating docs.

View file

@ -38,7 +38,7 @@ egui = { version = "0.18.1", path = "../egui", default-features = false, feature
] }
bytemuck = "1.7"
tracing = "0.1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
type-map = "0.5.0"
wgpu = "0.13"

View file

@ -45,7 +45,7 @@ egui = { version = "0.18.0", path = "../egui", default-features = false, feature
"tracing",
] }
instant = { version = "0.1", features = ["wasm-bindgen"] } # We use instant so we can (maybe) compile for web
tracing = "0.1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
winit = "0.26.1"
#! ### Optional dependencies

View file

@ -68,4 +68,4 @@ ron = { version = "0.7", optional = true }
serde = { version = "1", optional = true, features = ["derive", "rc"] }
# egui doesn't log much, but when it does, it uses [`tracing`](https://docs.rs/tracing).
tracing = { version = "0.1", optional = true }
tracing = { version = "0.1", optional = true, default-features = false, features = ["std"] }

View file

@ -33,7 +33,7 @@ syntax_highlighting = ["syntect"]
egui = { version = "0.18.0", path = "../egui", default-features = false }
egui_extras = { version = "0.18.0", path = "../egui_extras" }
enum-map = { version = "2", features = ["serde"] }
tracing = "0.1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
unicode_names2 = { version = "0.5.0", default-features = false }
#! ### Optional dependencies

View file

@ -67,4 +67,4 @@ usvg = { version = "0.23", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
# feature "tracing"
tracing = { version = "0.1", optional = true }
tracing = { version = "0.1", optional = true, default-features = false, features = ["std"] }

View file

@ -54,7 +54,7 @@ egui = { version = "0.18.0", path = "../egui", default-features = false, feature
bytemuck = "1.7"
glow = "0.11"
memoffset = "0.6"
tracing = "0.1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
#! ### Optional dependencies
## Enable this when generating docs.