1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.70" 15name = "inotify" 16version = "0.11.0" 17authors = [ 18 "Hanno Braun <[email protected]>", 19 "Félix Saparelli <[email protected]>", 20 "Cristian Kubis <[email protected]>", 21 "Frank Denis <[email protected]>", 22] 23build = false 24exclude = [ 25 "/.travis.yml", 26 "/inotify-rs.sublime-project", 27] 28autobins = false 29autoexamples = false 30autotests = false 31autobenches = false 32description = "Idiomatic wrapper for inotify" 33documentation = "https://docs.rs/inotify" 34readme = "README.md" 35keywords = [ 36 "inotify", 37 "linux", 38] 39categories = [ 40 "api-bindings", 41 "filesystem", 42] 43license = "ISC" 44repository = "https://github.com/hannobraun/inotify" 45 46[lib] 47name = "inotify" 48path = "src/lib.rs" 49 50[[example]] 51name = "stream" 52path = "examples/stream.rs" 53required-features = ["stream"] 54 55[[example]] 56name = "watch" 57path = "examples/watch.rs" 58 59[[test]] 60name = "main" 61path = "tests/main.rs" 62 63[dependencies.bitflags] 64version = "2" 65 66[dependencies.futures-core] 67version = "0.3.1" 68optional = true 69 70[dependencies.inotify-sys] 71version = "0.1.3" 72 73[dependencies.libc] 74version = "0.2" 75 76[dependencies.tokio] 77version = "1.0.1" 78features = ["net"] 79optional = true 80 81[dev-dependencies.futures-util] 82version = "0.3.1" 83 84[dev-dependencies.maplit] 85version = "1.0" 86 87[dev-dependencies.rand] 88version = "0.8" 89 90[dev-dependencies.tempfile] 91version = "3.1.0" 92 93[dev-dependencies.tokio] 94version = "1.0.1" 95features = [ 96 "macros", 97 "rt-multi-thread", 98] 99 100[features] 101default = ["stream"] 102stream = [ 103 "futures-core", 104 "tokio", 105] 106 107[badges.maintenance] 108status = "actively-developed" 109 110[badges.travis-ci] 111repository = "inotify-rs/inotify" 112