[package]
edition = "2021"
name = "anotify"
version = "0.1.3"
authors = ["oldwomanjosiah <jhilden13@gmail.com>"]
exclude = [
".github/",
"working.md",
]
description = "Async iNotify Filesystem Watcher"
readme = "readme.md"
keywords = [
"linux",
"inotify",
"async",
"watch",
]
categories = [
"asynchronous",
"api-bindings",
"filesystem",
]
license = "MIT"
repository = "https://github.com/oldwomanjosiah/anotify"
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.displaydoc]
version = "0.2.3"
[dependencies.nix]
version = "0.25"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"net",
"macros",
]
default-features = false
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tracing-impl]
version = "0.1"
features = ["log"]
optional = true
default-features = false
package = "tracing"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.tempdir]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
default-features = true
[features]
default = ["tracing"]
tracing = [
"tokio/tracing",
"tracing-impl",
]