Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions win_etw_logger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "win_etw_logger"
version = "0.1.10"
version = "0.1.11"
authors = ["Arlie Davis <ardavis@microsoft.com>"]
edition = "2018"
description = "A Rust log provider which forwards events to Event Tracing for Windows (ETW)."
Expand All @@ -12,6 +12,6 @@ readme = "../README.md"

[dependencies]
log = { version = "^0.4", features = ["std"] }
win_etw_provider = { version = "0.1.13", path = "../win_etw_provider" }
win_etw_provider = { version = "0.1.14", path = "../win_etw_provider" }
win_etw_macros = { version = "0.1.11", path = "../win_etw_macros" }
win_etw_metadata = { version = "0.1.3", path = "../win_etw_metadata" }
2 changes: 1 addition & 1 deletion win_etw_provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "win_etw_provider"
version = "0.1.13"
version = "0.1.14"
authors = ["Arlie Davis <ardavis@microsoft.com>"]
edition = "2018"
description = "Enables apps to report events to Event Tracing for Windows (ETW)."
Expand Down
4 changes: 2 additions & 2 deletions win_etw_tracing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "win_etw_tracing"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "Provides a backend for the `tracing` crate that logs events to ETW (Event Tracing for Windows)."
Expand All @@ -17,7 +17,7 @@ tracing-log = { version = "0.2", optional = true, default-features = false, feat
tracing-subscriber = { version = "0.3.22", default-features = false, features = ["smallvec", "fmt", "std"] }
uuid = "1.0"
win_etw_metadata = { path = "../win_etw_metadata", version = "0.1.3" }
win_etw_provider = { path = "../win_etw_provider", version = "0.1.13", features = ["uuid"] }
win_etw_provider = { path = "../win_etw_provider", version = "0.1.14", features = ["uuid"] }

[dev-dependencies]
anyhow = "1"
Loading