-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (47 loc) · 1.21 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
[package]
name = "watchdir"
version = "0.1.0"
authors = ["rydesun <[email protected]>"]
license = "MIT"
description = "A tool to watch directory in which files were operated"
homepage = "https://github.com/rydesun/watchdir"
repository = "https://github.com/rydesun/watchdir"
keywords = ["cli", "inotify", "linux"]
categories = ["command-line-utilities"]
edition = "2018"
publish = false
[dependencies]
ahash = "0.7"
async-stream = "0.3"
clap = "3.0.0"
clap_derive = "3.0.0"
clap_complete = "3.0.0"
directories = "4"
futures = "0.3"
lazy_static = "1"
libc = "0.2"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
snafu = "0.6"
termcolor = "1.1"
time = { version = "0.3", features = ["formatting", "local-offset", "macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time"] }
walkdir = "2"
[dependencies.tokio]
version = "1.13"
features = ["fs", "macros", "io-util", "sync", "rt-multi-thread", "time"]
[build-dependencies]
time = "0.3"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
rand = "0.8"
tempfile = "3"
[[bench]]
name = "benchmark"
harness = false
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1