Skip to content

Commit

Permalink
Merge pull request #652 from BenjaminBrienen/fix-advisory
Browse files Browse the repository at this point in the history
Fix advisory
  • Loading branch information
dfaust authored Nov 10, 2024
2 parents 03afa87 + 7d4e329 commit deb3427
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ New crate containing public type definitions for the notify and debouncer crates
[#568]: https://github.com/notify-rs/notify/pull/568
[#570]: https://github.com/notify-rs/notify/pull/570

## notify-types 2.0.0 (unreleased)

- CHANGE: replace instant crate with web-time **breaking**

## debouncer-mini 0.5.0 (2024-10-25)

- CHANGE: update notify to version 7.0.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ kqueue = "1.0.8"
libc = "0.2.4"
log = "0.4.17"
mio = { version = "1.0", features = ["os-ext"] }
instant = "0.1.12"
web-time = "1.1.0"
nix = "0.27.0"
notify = { version = "7.0.0", path = "notify" }
notify-debouncer-full = { version = "0.4.0", path = "notify-debouncer-full" }
Expand Down
2 changes: 1 addition & 1 deletion notify-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serialization-compat-6 = []

[dependencies]
serde = { workspace = true, optional = true }
instant.workspace = true
web-time.workspace = true

[dev-dependencies]
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion notify-types/src/debouncer_full.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::ops::{Deref, DerefMut};

use instant::Instant;
use web_time::Instant;

use crate::event::Event;

Expand Down

0 comments on commit deb3427

Please sign in to comment.