From b6a07c9f94a7b6f0e19ae60501d0ba1f9abc86bf Mon Sep 17 00:00:00 2001 From: cgettys-microsoft <67080058+cgettys-microsoft@users.noreply.github.com> Date: Wed, 9 Oct 2024 16:30:41 -0700 Subject: [PATCH] remove unnecessary dependency (#42) --- win_etw_provider/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/win_etw_provider/Cargo.toml b/win_etw_provider/Cargo.toml index 1635435..9ddf4d3 100644 --- a/win_etw_provider/Cargo.toml +++ b/win_etw_provider/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "win_etw_provider" -version = "0.1.10" +version = "0.1.11" authors = ["Arlie Davis "] edition = "2018" description = "Enables apps to report events to Event Tracing for Windows (ETW)." @@ -19,7 +19,6 @@ uuid = {version = "1", optional = true} [target.'cfg(windows)'.dependencies] winapi = { version = "^0.3", features = ["evntprov", "winerror", "evntrace"] } -w32-error = "^1.0" [dev-dependencies] atomic_lazy = { git = "https://github.com/sivadeilra/atomic_lazy" }