Skip to content

Commit e0d757d

Browse files
committed
Version increment for publishing
1 parent cf93e80 commit e0d757d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-etw"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
resolver = "2"
66
license = "MIT"
@@ -39,7 +39,7 @@ tracing = {version = "0.1", default-features = false, features = ["std", "attrib
3939
tracing-subscriber = {version="0.3", default-features = false, features=["std", "fmt", "registry"]}
4040

4141
[target.'cfg(windows)'.dev-dependencies]
42-
windows = {version="0.58", features=["Win32_System_Diagnostics_Etw", "Win32_Foundation", "Win32_System_Time"]}
42+
windows = {version="0.62", features=["Win32_System_Diagnostics_Etw", "Win32_Foundation", "Win32_System_Time"]}
4343
#etw_helpers = {version="0.1", path="../etw_helpers"}
4444

4545
[[bench]]

src/layer/layer_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ where
116116
let current_span = ctx
117117
.event_span(event)
118118
.map(|evt| evt.id())
119-
.map_or(0, |id| (id.into_u64()));
119+
.map_or(0, |id| id.into_u64());
120120
let parent_span = ctx
121121
.event_span(event)
122122
.map_or(0, |evt| evt.parent().map_or(0, |p| p.id().into_u64()));

0 commit comments

Comments
 (0)