-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
148 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,27 @@ | ||
[package] | ||
name = "file-id" | ||
version = "0.2.1" | ||
rust-version = "1.60" | ||
description = "Utility for reading inode numbers (Linux, MacOS) and file IDs (Windows)" | ||
documentation = "https://docs.rs/notify" | ||
homepage = "https://github.com/notify-rs/notify" | ||
repository = "https://github.com/notify-rs/notify.git" | ||
readme = "../README.md" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["filesystem", "inode", "file", "index"] | ||
categories = ["filesystem"] | ||
authors = ["Daniel Faust <[email protected]>"] | ||
|
||
edition = "2021" | ||
rust-version = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
|
||
[[bin]] | ||
name = "file-id" | ||
path = "bin/file_id.rs" | ||
|
||
[dependencies] | ||
serde = { version = "1.0.89", features = ["derive"], optional = true } | ||
serde = { workspace = true, optional = true } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
windows-sys = { version = "0.48.0", features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } | ||
windows-sys = { workspace = true, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } | ||
|
||
[dev-dependencies] | ||
tempfile = "3.2.0" | ||
tempfile = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,38 @@ | ||
[package] | ||
name = "notify-debouncer-full" | ||
version = "0.4.0" | ||
edition = "2021" | ||
rust-version = "1.63" | ||
description = "notify event debouncer optimized for ease of use" | ||
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 <[email protected]>"] | ||
keywords = ["events", "filesystem", "notify", "watch"] | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
name = "notify_debouncer_full" | ||
path = "src/lib.rs" | ||
rust-version = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
|
||
[features] | ||
default = ["crossbeam","macos_fsevent"] | ||
default = ["macos_fsevent"] | ||
serde = ["notify-types/serde"] | ||
mock_instant = ["dep:mock_instant","notify-types/mock_instant"] | ||
# can't use dep:crossbeam-channel and feature name crossbeam-channel below rust 1.60 | ||
crossbeam = ["crossbeam-channel","notify/crossbeam-channel"] | ||
serialization-compat-6 = ["notify/serialization-compat-6"] | ||
mock_instant = ["dep:mock_instant", "notify-types/mock_instant"] | ||
crossbeam-channel = ["dep:crossbeam-channel", "notify/crossbeam-channel"] | ||
macos_fsevent = ["notify/macos_fsevent"] | ||
macos_kqueue = ["notify/macos_kqueue"] | ||
|
||
[dependencies] | ||
notify = { version = "6.1.1", path = "../notify", default-features = false } | ||
notify-types = { version = "1.0.0", path = "../notify-types" } | ||
crossbeam-channel = { version = "0.5", optional = true } | ||
file-id = { version = "0.2.1", path = "../file-id" } | ||
walkdir = "2.2.2" | ||
log = "0.4.17" | ||
mock_instant = { version = "0.3.0", optional = true } | ||
notify = { workspace = true } | ||
notify-types = { workspace = true } | ||
crossbeam-channel = { workspace = true, optional = true } | ||
file-id = { workspace = true } | ||
walkdir = { workspace = true } | ||
log = { workspace = true } | ||
mock_instant = { workspace = true, optional = true } | ||
|
||
[dev-dependencies] | ||
notify-debouncer-full = { path = ".", features = ["mock_instant"] } | ||
pretty_assertions = "1.3.0" | ||
rstest = "0.18" | ||
serde = { version = "1.0.89", features = ["derive"] } | ||
deser-hjson = "1.1.1" | ||
rand = "0.8.5" | ||
notify-debouncer-full = { workspace = true, features = ["mock_instant"] } | ||
pretty_assertions = { workspace = true } | ||
rstest = { workspace = true } | ||
serde = { workspace = true } | ||
deser-hjson = { workspace = true } | ||
rand = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,26 @@ | ||
[package] | ||
name = "notify-debouncer-mini" | ||
version = "0.4.1" | ||
edition = "2021" | ||
rust-version = "1.63" | ||
description = "notify mini debouncer for events" | ||
documentation = "https://docs.rs/notify-debouncer-mini" | ||
homepage = "https://github.com/notify-rs/notify" | ||
repository = "https://github.com/notify-rs/notify.git" | ||
authors = ["Aron Heinecke <[email protected]>"] | ||
keywords = ["events", "filesystem", "notify", "watch"] | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
name = "notify_debouncer_mini" | ||
path = "src/lib.rs" | ||
rust-version = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
|
||
[features] | ||
default = ["crossbeam","macos_fsevent"] | ||
default = ["macos_fsevent"] | ||
serde = ["notify-types/serde"] | ||
# can't use dep:crossbeam-channel and feature name crossbeam-channel below rust 1.60 | ||
crossbeam = ["crossbeam-channel","notify/crossbeam-channel"] | ||
serialization-compat-6 = ["notify/serialization-compat-6"] | ||
crossbeam-channel = ["dep:crossbeam-channel", "notify/crossbeam-channel"] | ||
macos_fsevent = ["notify/macos_fsevent"] | ||
macos_kqueue = ["notify/macos_kqueue"] | ||
|
||
[dependencies] | ||
notify = { version = "6.1.1", path = "../notify", default-features = false } | ||
notify-types = { version = "1.0.0", path = "../notify-types" } | ||
crossbeam-channel = { version = "0.5", optional = true } | ||
log = "0.4.17" | ||
notify = { workspace = true } | ||
notify-types = { workspace = true } | ||
crossbeam-channel = { workspace = true, optional = true } | ||
log = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.