Skip to content

Commit

Permalink
faster builds: remove tracing-attributes feature from tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jul 3, 2022
1 parent 0f0031e commit c062bca
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion eframe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion egui-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion egui-winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion egui_demo_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion egui_extras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion egui_glow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c062bca

Please sign in to comment.