This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
forked from hannobraun/inotify-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (48 loc) · 1.58 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
55
56
57
58
59
60
61
[package]
name = "inotify"
version = "0.7.1-dev"
authors = [
"Hanno Braun <mail@hannobraun.de>",
"Félix Saparelli <me@passcod.name>",
"Cristian Kubis <cristian.kubis@tsunix.de>",
"Frank Denis <github@pureftpd.org>"
]
description = "Idiomatic wrapper for inotify"
documentation = "https://docs.rs/inotify"
repository = "https://github.com/inotify-rs/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", "mio", "tokio", "tokio-io", "tokio-reactor"]
[dependencies]
bitflags = "1"
futures = { version = "0.1", optional = true }
inotify-sys = "0.1.3"
libc = "0.2"
mio = { version = "0.6", optional = true }
tokio = { version = "0.1", optional = true }
tokio-io = { version = "0.1", optional = true }
tokio-reactor = { version = "0.1", optional = true }
[dev-dependencies]
tempdir = "0.3"
[[example]]
name = "stream"
required-features = ["stream"]
[[example]]
name = "watch"
[[example]]
name = "issue-120-workaround"
required-features = ["stream"]
[package.metadata.release]
pre-release-commit-message = "chore: Release version {{version}}"
pro-release-commit-message = "chore: Bump version to {{version}}"
tag-prefix = "v"
tag-message = "Version {{version}}"
dev-version-ext = "dev"