Files
notify/Cargo.toml
T
Daniel Faust ca017fb706 Reorganize tests
Eliminate warnings for unused code for platform specific tests
2016-07-19 22:26:30 +02:00

53 lines
1.1 KiB
TOML

[package]
name = "notify"
version = "2.6.2"
authors = [
"Félix Saparelli <me@passcod.name>",
"Jorge Israel Peña <jorge.israel.p@gmail.com>",
"Michael Maurizi <michael.maurizi@gmail.com>",
"Pierre Baillet <oct@zoy.org>",
"Joe Wilm <joe@jwilm.com>",
"Daniel Faust <hessijames@gmail.com>"
]
description = "Cross-platform filesystem notification library"
documentation = "https://crates.fyi/crates/notify"
homepage = "https://github.com/passcod/rsnotify"
repository = "https://github.com/passcod/rsnotify.git"
readme = "README.md"
license = "CC0-1.0"
keywords = [
"events",
"filesystem",
"notify",
"watch",
]
[dependencies]
bitflags = "^0.7.0"
libc = "^0.2.4"
log = "^0.3.4"
time = "^0.1.34"
filetime = "^0.1.9"
walkdir = "^0.1.5"
[target.'cfg(target_os="linux")'.dependencies]
inotify = "^0.2.3"
mio = "^0.5.0"
[target.'cfg(target_os="macos")'.dependencies]
fsevent = "^0.2.11"
fsevent-sys = "^0.1.3"
[target.'cfg(windows)'.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"
[dev-dependencies]
tempdir = "^0.3.4"
[features]
timing_tests = []
manual_tests = []