[package]
name = "inotify"
version = "0.7.1"
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"]
[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"