File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,10 @@ New crate containing public type definitions for the notify and debouncer crates
60
60
[ #568 ] : https://github.com/notify-rs/notify/pull/568
61
61
[ #570 ] : https://github.com/notify-rs/notify/pull/570
62
62
63
+ ## notify-types 2.0.0 (unreleased)
64
+
65
+ - CHANGE: replace instant crate with web-time ** breaking**
66
+
63
67
## debouncer-mini 0.5.0 (2024-10-25)
64
68
65
69
- CHANGE: update notify to version 7.0.0
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ kqueue = "1.0.8"
33
33
libc = " 0.2.4"
34
34
log = " 0.4.17"
35
35
mio = { version = " 1.0" , features = [" os-ext" ] }
36
- instant = " 0 .1.12 "
36
+ web-time = " 1 .1.0 "
37
37
nix = " 0.27.0"
38
38
notify = { version = " 7.0.0" , path = " notify" }
39
39
notify-debouncer-full = { version = " 0.4.0" , path = " notify-debouncer-full" }
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ serialization-compat-6 = []
18
18
19
19
[dependencies ]
20
20
serde = { workspace = true , optional = true }
21
- instant .workspace = true
21
+ web-time .workspace = true
22
22
23
23
[dev-dependencies ]
24
24
serde_json.workspace = true
Original file line number Diff line number Diff line change 1
1
use std:: ops:: { Deref , DerefMut } ;
2
2
3
- use instant :: Instant ;
3
+ use web_time :: Instant ;
4
4
5
5
use crate :: event:: Event ;
6
6
You can’t perform that action at this time.
0 commit comments