File tree Expand file tree Collapse file tree 7 files changed +12
-17
lines changed Expand file tree Collapse file tree 7 files changed +12
-17
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,3 @@ members = [
11
11
]
12
12
13
13
exclude = [" examples/hot_reload_tide" ]
14
-
15
- [patch .crates-io ]
16
- notify = { path = " notify/" }
17
- notify-debouncer-mini = { path = " notify-debouncer-mini/" }
18
- notify-debouncer-refined = { path = " notify-debouncer-refined/" }
19
- file-id = { path = " file-id/" }
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ Originally created by [Félix Saparelli] and awesome [contributors].
76
76
[ contributors ] : https://github.com/notify-rs/notify/graphs/contributors
77
77
[ crate ] : https://crates.io/crates/notify
78
78
[ docket ] : https://iwillspeak.github.io/docket/
79
- [ docs ] : https://docs.rs/notify/5.1 .0/notify/
79
+ [ docs ] : https://docs.rs/notify/6.0 .0/notify/
80
80
[ fsnotify ] : https://github.com/go-fsnotify/fsnotify
81
81
[ handlebars-iron ] : https://github.com/sunng87/handlebars-iron
82
82
[ hotwatch ] : https://github.com/francesca64/hotwatch
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ publish = false
5
5
edition = " 2021"
6
6
7
7
[dev-dependencies ]
8
- notify = { version = " 5.1.0 " }
9
- notify-debouncer-mini = { version = " 0.2.0" }
10
- notify-debouncer-refined = { version = " 0.1.0" }
8
+ notify = { version = " 6.0.0 " , path = " ../notify " }
9
+ notify-debouncer-mini = { version = " 0.2.0" , path = " ../notify-debouncer-mini " }
10
+ notify-debouncer-refined = { version = " 0.1.0" , path = " ../notify-debouncer-refined " }
11
11
futures = " 0.3"
12
12
tempfile = " 3.5.0"
13
13
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ tide = "0.16.0"
11
11
async-std = { version = " 1.6.0" , features = [" attributes" ] }
12
12
serde_json = " 1.0"
13
13
serde = " 1.0.115"
14
- notify = { version = " 5.1 .0" , features = [" serde" ], path = " ../../notify" }
14
+ notify = { version = " 6.0 .0" , features = [" serde" ], path = " ../../notify" }
15
15
16
16
# required to prevent mixing with workspace
17
17
# hack to prevent cargo audit from catching this
Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ default = ["crossbeam"]
24
24
crossbeam = [" crossbeam-channel" ," notify/crossbeam-channel" ]
25
25
26
26
[dependencies ]
27
- notify = " 5.1 .0"
27
+ notify = { version = " 6.0 .0" , path = " ../notify " }
28
28
crossbeam-channel = { version = " 0.5" , optional = true }
29
29
serde = { version = " 1.0.89" , features = [" derive" ], optional = true }
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ default = ["crossbeam"]
24
24
crossbeam = [" crossbeam-channel" ," notify/crossbeam-channel" ]
25
25
26
26
[dependencies ]
27
- notify = " 5.1 .0"
27
+ notify = { version = " 6.0 .0" , path = " ../notify " }
28
28
crossbeam-channel = { version = " 0.5" , optional = true }
29
29
serde = { version = " 1.0.89" , features = [" derive" ], optional = true }
30
- file-id = " 0.1.0"
30
+ file-id = { version = " 0.1.0" , path = " ../file-id " }
31
31
walkdir = " 2.2.2"
32
32
parking_lot = " 0.12.1"
33
33
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! ```toml
6
6
//! [dependencies]
7
- //! notify = "5.1 .0"
7
+ //! notify = "6.0 .0"
8
8
//! ```
9
9
//!
10
10
//! If you want debounced events, see [notify-debouncer-mini](https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini)
11
+ //! or [notify-debouncer-refined](https://github.com/notify-rs/notify/tree/main/notify-debouncer-refined).
11
12
//!
12
13
//! ## Features
13
14
//!
23
24
//! Events are serialisable via [serde](https://serde.rs) if the `serde` feature is enabled:
24
25
//!
25
26
//! ```toml
26
- //! notify = { version = "5.1 .0", features = ["serde"] }
27
+ //! notify = { version = "6.0 .0", features = ["serde"] }
27
28
//! ```
28
29
//!
29
30
//! ### Crossbeam-Channel & Tokio
34
35
//! You can disable crossbeam-channel, letting notify fallback to std channels via
35
36
//!
36
37
//! ```toml
37
- //! notify = { version = "5.1 .0", default-features = false, features = ["macos_kqueue"] }
38
+ //! notify = { version = "6.0 .0", default-features = false, features = ["macos_kqueue"] }
38
39
//! // Alternatively macos_fsevent instead of macos_kqueue
39
40
//! ```
40
41
//! Note the `macos_kqueue` requirement here, otherwise no backend is available on macos.
You can’t perform that action at this time.
0 commit comments