From af9feef39901a19acedc2d0d95c90acfb594f0ae Mon Sep 17 00:00:00 2001 From: Daniel Faust Date: Mon, 15 May 2023 11:57:29 +0200 Subject: [PATCH] Rename debouncer-refined to debouncer-full --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- examples/Cargo.toml | 14 +++++++------- .../{debounced_refined.rs => debouncer_full.rs} | 2 +- examples/{debounced.rs => debouncer_mini.rs} | 0 ...ced_full_custom.rs => debouncer_mini_custom.rs} | 0 .../Cargo.toml | 6 +++--- .../LICENSE | 0 .../LICENSE.ARTISTIC | 0 .../README.md | 6 +++--- .../src/cache.rs | 0 .../src/lib.rs | 8 ++++---- .../src/testing.rs | 0 .../test_cases/add_create_dir_event_twice.hjson | 0 .../test_cases/add_create_event.hjson | 0 .../add_create_event_after_remove_event.hjson | 0 .../test_cases/add_errors.hjson | 0 ...d_modify_content_event_after_create_event.hjson | 0 .../test_cases/add_remove_event.hjson | 0 ...emove_event_after_create_and_modify_event.hjson | 0 .../add_remove_event_after_create_event.hjson | 0 .../add_remove_event_after_modify_event.hjson | 0 ...ove_parent_event_after_remove_child_event.hjson | 0 .../test_cases/add_rename_both_event.hjson | 0 .../test_cases/add_rename_from_and_to_event.hjson | 0 ...add_rename_from_and_to_event_after_create.hjson | 0 ...me_from_and_to_event_after_modify_content.hjson | 0 ...add_rename_from_and_to_event_after_rename.hjson | 0 ...rename_from_and_to_event_override_created.hjson | 0 ...ename_from_and_to_event_override_modified.hjson | 0 ...rename_from_and_to_event_override_removed.hjson | 0 ...from_and_to_event_with_different_file_ids.hjson | 0 ..._from_and_to_event_with_different_tracker.hjson | 0 ...dd_rename_from_and_to_event_with_file_ids.hjson | 0 .../test_cases/add_rename_from_event.hjson | 0 ..._from_event_after_create_and_modify_event.hjson | 0 .../add_rename_from_event_after_create_event.hjson | 0 .../add_rename_from_event_after_modify_event.hjson | 0 ...rename_from_event_after_rename_from_event.hjson | 0 .../test_cases/add_rename_to_dir_event.hjson | 0 .../test_cases/add_rename_to_event.hjson | 0 .../test_cases/emit_close_events_only_once.hjson | 0 .../emit_continuous_modify_content_events.hjson | 0 .../emit_events_in_chronological_order.hjson | 0 ...emit_events_with_a_prepended_rename_event.hjson | 0 .../emit_modify_event_after_close_event.hjson | 0 .../test_cases/emit_needs_rescan_event.hjson | 0 .../read_file_id_without_create_event.hjson | 0 notify/src/lib.rs | 2 +- 49 files changed, 21 insertions(+), 21 deletions(-) rename examples/{debounced_refined.rs => debouncer_full.rs} (97%) rename examples/{debounced.rs => debouncer_mini.rs} (100%) rename examples/{debounced_full_custom.rs => debouncer_mini_custom.rs} (100%) rename {notify-debouncer-refined => notify-debouncer-full}/Cargo.toml (90%) rename {notify-debouncer-refined => notify-debouncer-full}/LICENSE (100%) rename {notify-debouncer-refined => notify-debouncer-full}/LICENSE.ARTISTIC (100%) rename {notify-debouncer-refined => notify-debouncer-full}/README.md (86%) rename {notify-debouncer-refined => notify-debouncer-full}/src/cache.rs (100%) rename {notify-debouncer-refined => notify-debouncer-full}/src/lib.rs (99%) rename {notify-debouncer-refined => notify-debouncer-full}/src/testing.rs (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_create_dir_event_twice.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_create_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_create_event_after_remove_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_errors.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_modify_content_event_after_create_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_remove_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_remove_event_after_create_and_modify_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_remove_event_after_create_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_remove_event_after_modify_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_remove_parent_event_after_remove_child_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_both_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_after_create.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_after_modify_content.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_after_rename.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_override_created.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_override_modified.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_override_removed.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_with_different_file_ids.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_with_different_tracker.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_and_to_event_with_file_ids.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_event_after_create_and_modify_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_event_after_create_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_event_after_modify_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_from_event_after_rename_from_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_to_dir_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/add_rename_to_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/emit_close_events_only_once.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/emit_continuous_modify_content_events.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/emit_events_in_chronological_order.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/emit_events_with_a_prepended_rename_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/emit_modify_event_after_close_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/emit_needs_rescan_event.hjson (100%) rename {notify-debouncer-refined => notify-debouncer-full}/test_cases/read_file_id_without_create_event.hjson (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20071928..3cd09057 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16` - CHANGE: files and directories moved into a watch folder on Linux will now be reported as `rename to` events instead of `create` events - CHANGE: on Linux `rename from` events will be emitted immediately without starting a new thread -## debouncer-refined 0.1.0 +## debouncer-full 0.1.0 - FEATURE: only emit a single `rename` event if the rename `From` and `To` events can be matched - FEATURE: merge multiple `rename` events diff --git a/Cargo.toml b/Cargo.toml index 4d1f2ee8..48cd7f9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [ "notify", "notify-debouncer-mini", - "notify-debouncer-refined", + "notify-debouncer-full", "file-id", # internal "examples" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 1ea83f27..6ed3000c 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dev-dependencies] notify = { version = "6.0.0", path = "../notify" } notify-debouncer-mini = { version = "0.2.0", path = "../notify-debouncer-mini" } -notify-debouncer-refined = { version = "0.1.0", path = "../notify-debouncer-refined" } +notify-debouncer-full = { version = "0.1.0", path = "../notify-debouncer-full" } futures = "0.3" tempfile = "3.5.0" @@ -20,16 +20,16 @@ name = "monitor_raw" path = "monitor_raw.rs" [[example]] -name = "debounced" -path = "debounced.rs" +name = "debouncer_mini" +path = "debouncer_mini.rs" [[example]] -name = "debounced_custom" -path = "debounced_full_custom.rs" +name = "debouncer_mini_custom" +path = "debouncer_mini_custom.rs" [[example]] -name = "debounced_refined" -path = "debounced_refined.rs" +name = "debouncer_full" +path = "debouncer_full.rs" [[example]] name = "poll_sysfs" diff --git a/examples/debounced_refined.rs b/examples/debouncer_full.rs similarity index 97% rename from examples/debounced_refined.rs rename to examples/debouncer_full.rs index fc74510c..f1878f80 100644 --- a/examples/debounced_refined.rs +++ b/examples/debouncer_full.rs @@ -1,7 +1,7 @@ use std::{fs, thread, time::Duration}; use notify::{RecursiveMode, Watcher}; -use notify_debouncer_refined::new_debouncer; +use notify_debouncer_full::new_debouncer; use tempfile::tempdir; fn main() -> Result<(), Box> { diff --git a/examples/debounced.rs b/examples/debouncer_mini.rs similarity index 100% rename from examples/debounced.rs rename to examples/debouncer_mini.rs diff --git a/examples/debounced_full_custom.rs b/examples/debouncer_mini_custom.rs similarity index 100% rename from examples/debounced_full_custom.rs rename to examples/debouncer_mini_custom.rs diff --git a/notify-debouncer-refined/Cargo.toml b/notify-debouncer-full/Cargo.toml similarity index 90% rename from notify-debouncer-refined/Cargo.toml rename to notify-debouncer-full/Cargo.toml index af56369e..eb08010a 100644 --- a/notify-debouncer-refined/Cargo.toml +++ b/notify-debouncer-full/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "notify-debouncer-refined" +name = "notify-debouncer-full" version = "0.1.0" edition = "2021" rust-version = "1.56" description = "notify event debouncer optimized for ease of use" -documentation = "https://docs.rs/notify-debouncer-refined" +documentation = "https://docs.rs/notify-debouncer-full" homepage = "https://github.com/notify-rs/notify" repository = "https://github.com/notify-rs/notify.git" authors = ["Daniel Faust "] @@ -15,7 +15,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] -name = "notify_debouncer_refined" +name = "notify_debouncer_full" path = "src/lib.rs" [features] diff --git a/notify-debouncer-refined/LICENSE b/notify-debouncer-full/LICENSE similarity index 100% rename from notify-debouncer-refined/LICENSE rename to notify-debouncer-full/LICENSE diff --git a/notify-debouncer-refined/LICENSE.ARTISTIC b/notify-debouncer-full/LICENSE.ARTISTIC similarity index 100% rename from notify-debouncer-refined/LICENSE.ARTISTIC rename to notify-debouncer-full/LICENSE.ARTISTIC diff --git a/notify-debouncer-refined/README.md b/notify-debouncer-full/README.md similarity index 86% rename from notify-debouncer-refined/README.md rename to notify-debouncer-full/README.md index a667d899..101d65eb 100644 --- a/notify-debouncer-refined/README.md +++ b/notify-debouncer-full/README.md @@ -1,4 +1,4 @@ -# Notify Debouncer Refined +# Notify Debouncer Full [![ยป Docs](https://flat.badgen.net/badge/api/docs.rs/df3600)][docs] @@ -19,12 +19,12 @@ A debouncer for [notify] that is optimized for ease of use. Use someting like the following to disable it. ```toml - notify-debouncer-refined = { version = "*", default-features = false } + notify-debouncer-full = { version = "*", default-features = false } ``` This also passes through to notify as `crossbeam-channel` feature. - `serde` for serde support of event types, off by default -[docs]: https://docs.rs/notify-debouncer-refined +[docs]: https://docs.rs/notify-debouncer-full [notify]: https://crates.io/crates/notify diff --git a/notify-debouncer-refined/src/cache.rs b/notify-debouncer-full/src/cache.rs similarity index 100% rename from notify-debouncer-refined/src/cache.rs rename to notify-debouncer-full/src/cache.rs diff --git a/notify-debouncer-refined/src/lib.rs b/notify-debouncer-full/src/lib.rs similarity index 99% rename from notify-debouncer-refined/src/lib.rs rename to notify-debouncer-full/src/lib.rs index f6205187..44db1731 100644 --- a/notify-debouncer-refined/src/lib.rs +++ b/notify-debouncer-full/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! notify-debouncer-refined = "0.1.0" +//! notify-debouncer-full = "0.1.0" //! ``` //! //! In case you want to select specific features of notify, @@ -19,7 +19,7 @@ //! Otherwise you can just use the re-export of notify from debouncer-easy. //! //! ```toml -//! notify-debouncer-refined = "0.1.0" +//! notify-debouncer-full = "0.1.0" //! notify = { version = "..", features = [".."] } //! ``` //! @@ -28,7 +28,7 @@ //! ```rust,no_run //! # use std::path::Path; //! # use std::time::Duration; -//! use notify_debouncer_refined::{notify::*, new_debouncer, DebounceEventResult}; +//! use notify_debouncer_full::{notify::*, new_debouncer, DebounceEventResult}; //! //! // Select recommended watcher for debouncer. //! // Using a callback here, could also be a channel. @@ -98,7 +98,7 @@ use std::time::Instant; /// /// ```rust,no_run /// # use notify::{Event, Result, EventHandler}; -/// # use notify_debouncer_refined::{DebounceEventHandler, DebounceEventResult}; +/// # use notify_debouncer_full::{DebounceEventHandler, DebounceEventResult}; /// /// /// Prints received events /// struct EventPrinter; diff --git a/notify-debouncer-refined/src/testing.rs b/notify-debouncer-full/src/testing.rs similarity index 100% rename from notify-debouncer-refined/src/testing.rs rename to notify-debouncer-full/src/testing.rs diff --git a/notify-debouncer-refined/test_cases/add_create_dir_event_twice.hjson b/notify-debouncer-full/test_cases/add_create_dir_event_twice.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_create_dir_event_twice.hjson rename to notify-debouncer-full/test_cases/add_create_dir_event_twice.hjson diff --git a/notify-debouncer-refined/test_cases/add_create_event.hjson b/notify-debouncer-full/test_cases/add_create_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_create_event.hjson rename to notify-debouncer-full/test_cases/add_create_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_create_event_after_remove_event.hjson b/notify-debouncer-full/test_cases/add_create_event_after_remove_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_create_event_after_remove_event.hjson rename to notify-debouncer-full/test_cases/add_create_event_after_remove_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_errors.hjson b/notify-debouncer-full/test_cases/add_errors.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_errors.hjson rename to notify-debouncer-full/test_cases/add_errors.hjson diff --git a/notify-debouncer-refined/test_cases/add_modify_content_event_after_create_event.hjson b/notify-debouncer-full/test_cases/add_modify_content_event_after_create_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_modify_content_event_after_create_event.hjson rename to notify-debouncer-full/test_cases/add_modify_content_event_after_create_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_remove_event.hjson b/notify-debouncer-full/test_cases/add_remove_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_remove_event.hjson rename to notify-debouncer-full/test_cases/add_remove_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_remove_event_after_create_and_modify_event.hjson b/notify-debouncer-full/test_cases/add_remove_event_after_create_and_modify_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_remove_event_after_create_and_modify_event.hjson rename to notify-debouncer-full/test_cases/add_remove_event_after_create_and_modify_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_remove_event_after_create_event.hjson b/notify-debouncer-full/test_cases/add_remove_event_after_create_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_remove_event_after_create_event.hjson rename to notify-debouncer-full/test_cases/add_remove_event_after_create_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_remove_event_after_modify_event.hjson b/notify-debouncer-full/test_cases/add_remove_event_after_modify_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_remove_event_after_modify_event.hjson rename to notify-debouncer-full/test_cases/add_remove_event_after_modify_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_remove_parent_event_after_remove_child_event.hjson b/notify-debouncer-full/test_cases/add_remove_parent_event_after_remove_child_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_remove_parent_event_after_remove_child_event.hjson rename to notify-debouncer-full/test_cases/add_remove_parent_event_after_remove_child_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_both_event.hjson b/notify-debouncer-full/test_cases/add_rename_both_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_both_event.hjson rename to notify-debouncer-full/test_cases/add_rename_both_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_after_create.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_after_create.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_after_create.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_after_create.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_after_modify_content.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_after_modify_content.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_after_modify_content.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_after_modify_content.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_after_rename.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_after_rename.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_after_rename.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_after_rename.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_override_created.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_override_created.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_override_created.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_override_created.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_override_modified.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_override_modified.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_override_modified.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_override_modified.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_override_removed.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_override_removed.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_override_removed.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_override_removed.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_with_different_file_ids.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_with_different_file_ids.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_with_different_file_ids.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_with_different_file_ids.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_with_different_tracker.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_with_different_tracker.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_with_different_tracker.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_with_different_tracker.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_and_to_event_with_file_ids.hjson b/notify-debouncer-full/test_cases/add_rename_from_and_to_event_with_file_ids.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_and_to_event_with_file_ids.hjson rename to notify-debouncer-full/test_cases/add_rename_from_and_to_event_with_file_ids.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_event.hjson b/notify-debouncer-full/test_cases/add_rename_from_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_event.hjson rename to notify-debouncer-full/test_cases/add_rename_from_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_event_after_create_and_modify_event.hjson b/notify-debouncer-full/test_cases/add_rename_from_event_after_create_and_modify_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_event_after_create_and_modify_event.hjson rename to notify-debouncer-full/test_cases/add_rename_from_event_after_create_and_modify_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_event_after_create_event.hjson b/notify-debouncer-full/test_cases/add_rename_from_event_after_create_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_event_after_create_event.hjson rename to notify-debouncer-full/test_cases/add_rename_from_event_after_create_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_event_after_modify_event.hjson b/notify-debouncer-full/test_cases/add_rename_from_event_after_modify_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_event_after_modify_event.hjson rename to notify-debouncer-full/test_cases/add_rename_from_event_after_modify_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_from_event_after_rename_from_event.hjson b/notify-debouncer-full/test_cases/add_rename_from_event_after_rename_from_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_from_event_after_rename_from_event.hjson rename to notify-debouncer-full/test_cases/add_rename_from_event_after_rename_from_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_to_dir_event.hjson b/notify-debouncer-full/test_cases/add_rename_to_dir_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_to_dir_event.hjson rename to notify-debouncer-full/test_cases/add_rename_to_dir_event.hjson diff --git a/notify-debouncer-refined/test_cases/add_rename_to_event.hjson b/notify-debouncer-full/test_cases/add_rename_to_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/add_rename_to_event.hjson rename to notify-debouncer-full/test_cases/add_rename_to_event.hjson diff --git a/notify-debouncer-refined/test_cases/emit_close_events_only_once.hjson b/notify-debouncer-full/test_cases/emit_close_events_only_once.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/emit_close_events_only_once.hjson rename to notify-debouncer-full/test_cases/emit_close_events_only_once.hjson diff --git a/notify-debouncer-refined/test_cases/emit_continuous_modify_content_events.hjson b/notify-debouncer-full/test_cases/emit_continuous_modify_content_events.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/emit_continuous_modify_content_events.hjson rename to notify-debouncer-full/test_cases/emit_continuous_modify_content_events.hjson diff --git a/notify-debouncer-refined/test_cases/emit_events_in_chronological_order.hjson b/notify-debouncer-full/test_cases/emit_events_in_chronological_order.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/emit_events_in_chronological_order.hjson rename to notify-debouncer-full/test_cases/emit_events_in_chronological_order.hjson diff --git a/notify-debouncer-refined/test_cases/emit_events_with_a_prepended_rename_event.hjson b/notify-debouncer-full/test_cases/emit_events_with_a_prepended_rename_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/emit_events_with_a_prepended_rename_event.hjson rename to notify-debouncer-full/test_cases/emit_events_with_a_prepended_rename_event.hjson diff --git a/notify-debouncer-refined/test_cases/emit_modify_event_after_close_event.hjson b/notify-debouncer-full/test_cases/emit_modify_event_after_close_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/emit_modify_event_after_close_event.hjson rename to notify-debouncer-full/test_cases/emit_modify_event_after_close_event.hjson diff --git a/notify-debouncer-refined/test_cases/emit_needs_rescan_event.hjson b/notify-debouncer-full/test_cases/emit_needs_rescan_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/emit_needs_rescan_event.hjson rename to notify-debouncer-full/test_cases/emit_needs_rescan_event.hjson diff --git a/notify-debouncer-refined/test_cases/read_file_id_without_create_event.hjson b/notify-debouncer-full/test_cases/read_file_id_without_create_event.hjson similarity index 100% rename from notify-debouncer-refined/test_cases/read_file_id_without_create_event.hjson rename to notify-debouncer-full/test_cases/read_file_id_without_create_event.hjson diff --git a/notify/src/lib.rs b/notify/src/lib.rs index be51debd..f6425afe 100644 --- a/notify/src/lib.rs +++ b/notify/src/lib.rs @@ -8,7 +8,7 @@ //! ``` //! //! If you want debounced events, see [notify-debouncer-mini](https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini) -//! or [notify-debouncer-refined](https://github.com/notify-rs/notify/tree/main/notify-debouncer-refined). +//! or [notify-debouncer-full](https://github.com/notify-rs/notify/tree/main/notify-debouncer-full). //! //! ## Features //!