-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
22 lines (20 loc) · 887 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "change-journal"
version = "0.1.0"
authors = [
"Khyber Sen <kkysen@gmail.com>",
"Rickson Yang <rixin.yang.2001@gmail.com>",
]
edition = "2018"
description = "A unified change journal-like API for Linux and Windows that lets you monitor entire filesystems, mount points, and/or volumes for file change events. It uses fanotify on Linux and the USN Journal on Windows."
license = "MIT"
repository = "https://github.com/codeprentice-org/change-journal"
homepage = "https://github.com/codeprentice-org/change-journal/blob/main/README.md"
readme = "README.md"
categories = ["filesystem", "os::linux-apis", "os::windows-apis"]
keywords = ["journal", "fanotify", "USN", "watch", "filesystem"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0.21"
fanotify = "0.1.0"
usn-journal = "0.1.0"