Skip to content

Commit af9feef

Browse files
dfaust0xpr03
authored andcommitted
Rename debouncer-refined to debouncer-full
1 parent 679fc4a commit af9feef

File tree

49 files changed

+21
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+21
-21
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
members = [
44
"notify",
55
"notify-debouncer-mini",
6-
"notify-debouncer-refined",
6+
"notify-debouncer-full",
77
"file-id",
88
# internal
99
"examples"

examples/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dev-dependencies]
88
notify = { version = "6.0.0", path = "../notify" }
99
notify-debouncer-mini = { version = "0.2.0", path = "../notify-debouncer-mini" }
10-
notify-debouncer-refined = { version = "0.1.0", path = "../notify-debouncer-refined" }
10+
notify-debouncer-full = { version = "0.1.0", path = "../notify-debouncer-full" }
1111
futures = "0.3"
1212
tempfile = "3.5.0"
1313

@@ -20,16 +20,16 @@ name = "monitor_raw"
2020
path = "monitor_raw.rs"
2121

2222
[[example]]
23-
name = "debounced"
24-
path = "debounced.rs"
23+
name = "debouncer_mini"
24+
path = "debouncer_mini.rs"
2525

2626
[[example]]
27-
name = "debounced_custom"
28-
path = "debounced_full_custom.rs"
27+
name = "debouncer_mini_custom"
28+
path = "debouncer_mini_custom.rs"
2929

3030
[[example]]
31-
name = "debounced_refined"
32-
path = "debounced_refined.rs"
31+
name = "debouncer_full"
32+
path = "debouncer_full.rs"
3333

3434
[[example]]
3535
name = "poll_sysfs"

examples/debounced_refined.rs renamed to examples/debouncer_full.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::{fs, thread, time::Duration};
22

33
use notify::{RecursiveMode, Watcher};
4-
use notify_debouncer_refined::new_debouncer;
4+
use notify_debouncer_full::new_debouncer;
55
use tempfile::tempdir;
66

77
fn main() -> Result<(), Box<dyn std::error::Error>> {
File renamed without changes.
File renamed without changes.

notify-debouncer-refined/Cargo.toml renamed to notify-debouncer-full/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
2-
name = "notify-debouncer-refined"
2+
name = "notify-debouncer-full"
33
version = "0.1.0"
44
edition = "2021"
55
rust-version = "1.56"
66
description = "notify event debouncer optimized for ease of use"
7-
documentation = "https://docs.rs/notify-debouncer-refined"
7+
documentation = "https://docs.rs/notify-debouncer-full"
88
homepage = "https://github.com/notify-rs/notify"
99
repository = "https://github.com/notify-rs/notify.git"
1010
authors = ["Daniel Faust <hessijames@gmail.com>"]
@@ -15,7 +15,7 @@ readme = "README.md"
1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[lib]
18-
name = "notify_debouncer_refined"
18+
name = "notify_debouncer_full"
1919
path = "src/lib.rs"
2020

2121
[features]
File renamed without changes.

notify-debouncer-refined/README.md renamed to notify-debouncer-full/README.md

Lines changed: 3 additions & 3 deletions

notify-debouncer-refined/src/lib.rs renamed to notify-debouncer-full/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
//!
1212
//! ```toml
1313
//! [dependencies]
14-
//! notify-debouncer-refined = "0.1.0"
14+
//! notify-debouncer-full = "0.1.0"
1515
//! ```
1616
//!
1717
//! In case you want to select specific features of notify,
1818
//! specify notify as dependency explicitely in your dependencies.
1919
//! Otherwise you can just use the re-export of notify from debouncer-easy.
2020
//!
2121
//! ```toml
22-
//! notify-debouncer-refined = "0.1.0"
22+
//! notify-debouncer-full = "0.1.0"
2323
//! notify = { version = "..", features = [".."] }
2424
//! ```
2525
//!
@@ -28,7 +28,7 @@
2828
//! ```rust,no_run
2929
//! # use std::path::Path;
3030
//! # use std::time::Duration;
31-
//! use notify_debouncer_refined::{notify::*, new_debouncer, DebounceEventResult};
31+
//! use notify_debouncer_full::{notify::*, new_debouncer, DebounceEventResult};
3232
//!
3333
//! // Select recommended watcher for debouncer.
3434
//! // Using a callback here, could also be a channel.
@@ -98,7 +98,7 @@ use std::time::Instant;
9898
///
9999
/// ```rust,no_run
100100
/// # use notify::{Event, Result, EventHandler};
101-
/// # use notify_debouncer_refined::{DebounceEventHandler, DebounceEventResult};
101+
/// # use notify_debouncer_full::{DebounceEventHandler, DebounceEventResult};
102102
///
103103
/// /// Prints received events
104104
/// struct EventPrinter;

notify/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//! ```
99
//!
1010
//! 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+
//! or [notify-debouncer-full](https://github.com/notify-rs/notify/tree/main/notify-debouncer-full).
1212
//!
1313
//! ## Features
1414
//!

0 commit comments

Comments
 (0)