-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
54 lines (48 loc) · 1.34 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "wtr-watcher"
version = "0.13.2" # hook: tool/release
edition = "2021"
build = "watcher-rs/build.rs"
authors = ["Will <[email protected]>"]
description = "Filesystem watcher. Works anywhere. Simple, efficient and friendly."
documentation = "https://github.com/e-dant/watcher/blob/release/readme.md"
homepage = "https://github.com/e-dant/watcher"
keywords = [
"events",
"filesystem",
"monitoring",
"tracing",
"watcher",
]
categories = [
"asynchronous",
"command-line-interface",
"command-line-utilities",
"development-tools",
"filesystem",
]
license = "MIT"
readme = "readme.md"
repository = "https://github.com/e-dant/watcher"
[lib]
name = "wtr_watcher"
path = "watcher-rs/src/lib.rs"
[[bin]]
name = "wtr-watcher"
path = "watcher-rs/src/main.rs"
required-features = ["cli"]
[[example]]
name = "show-events"
path = "watcher-rs/examples/show-events.rs"
[features]
serde = ["dep:serde"]
cli = ["dep:serde", "serde_json", "tokio", "tokio/rt", "tokio/macros", "tokio/signal"]
default = ["cli", "serde"]
[dependencies]
futures = { version = "0", features = ["alloc", "std"], default-features = false }
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
tokio = { version = "1", default-features = false, optional = true }
[build-dependencies]
cc = "1"
bindgen = "0"