-
Notifications
You must be signed in to change notification settings - Fork 65
/
Cargo.toml
53 lines (42 loc) · 1.24 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 = "inotify"
version = "0.11.0"
authors = [
"Hanno Braun <[email protected]>",
"Félix Saparelli <[email protected]>",
"Cristian Kubis <[email protected]>",
"Frank Denis <[email protected]>"
]
edition = "2018"
rust-version = "1.70"
description = "Idiomatic wrapper for inotify"
documentation = "https://docs.rs/inotify"
repository = "https://github.com/hannobraun/inotify"
license = "ISC"
readme = "README.md"
keywords = ["inotify", "linux"]
categories = ["api-bindings", "filesystem"]
exclude = ["/.travis.yml", "/inotify-rs.sublime-project"]
[badges]
maintenance = { status = "actively-developed" }
travis-ci = { repository = "inotify-rs/inotify" }
[features]
default = ["stream"]
stream = ["futures-core", "tokio"]
[dependencies]
bitflags = "2"
futures-core = { version = "0.3.30", optional = true }
inotify-sys = "0.1.5"
libc = "0.2"
tokio = { version = "1.40.0", optional = true, features = ["net"] }
[dev-dependencies]
maplit = "1.0"
rand = "0.8"
tempfile = "3.12.0"
futures-util = "0.3.30"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
[[example]]
name = "stream"
required-features = ["stream"]
[[example]]
name = "watch"