Skip to content

Commit

Permalink
debouncer: correctly document crossbeam feature
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpr03 committed Aug 31, 2022
1 parent 36d1da5 commit 4162b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion notify-debouncer-mini/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notify-debouncer-mini"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
rust-version = "1.56"
description = "notify mini debouncer for events"
Expand Down
3 changes: 2 additions & 1 deletion notify-debouncer-mini/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
//!
//! The following feature can be turned on or off.
//!
//! - `crossbeam-channel` enabled by default, adds DebounceEventHandler support for crossbeam channels.
//! - `crossbeam` enabled by default, adds DebounceEventHandler support for crossbeam channels.
//! Also enables crossbeam-channel in the re-exported notify. You my want to disable this when using the tokio async runtime.
//! - `serde` enabled serde support for events.
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
Expand Down

0 comments on commit 4162b8d

Please sign in to comment.