Skip to content

Commit

Permalink
Fix clippy warnings, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ohadravid committed Dec 4, 2024
1 parent 386a89f commit 2f610f3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wmi"
version = "0.14.1"
version = "0.14.2"
authors = ["Ohad Ravid <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@
#![allow(non_snake_case)]
#![allow(unused_unsafe)]
#![allow(clippy::arc_with_non_send_sync)]
#![allow(clippy::needless_lifetimes)]
#![cfg(windows)]

pub mod connection;
Expand Down
1 change: 0 additions & 1 deletion src/notification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ impl WMIConnection {
/// filters.insert("TargetInstance".to_owned(), FilterValue::is_a::<Win32_Process>()?);
///
/// let iterator = con.filtered_notification::<__InstanceCreationEvent>(&filters, Some(Duration::from_secs(1)))?;
/// # Ok(())
/// # }
/// ```
Expand Down

0 comments on commit 2f610f3

Please sign in to comment.