[package] name = "json-job-dispatch" version = "3.0.2" authors = ["Ben Boeckel "] license = "MIT/Apache-2.0" description = """ Dispatch jobs described by JSON files and sort them according to their status. """ repository = "https://gitlab.kitware.com/utils/rust-json-job-dispatch" documentation = "https://docs.rs/json-job-dispatch/~3.0" readme = "README.md" keywords = ["events", "task"] edition = "2018" [target.'cfg(unix)'.dev-dependencies] libc = "~0.2" [dependencies] async-trait = "~0.1.9" chrono = { version = "~0.4.20", default-features = false, features = ["clock"] } futures = "~0.3" futures-core = "~0.3" inotify = "~0.10" itertools = "~0.10" log = "~0.4.4" rand = "~0.8" rust-lzma = "~0.5.1" tar = "~0.4.36" tempfile = "^3.4.0" thiserror = "^1.0.2" tokio = { version = "^1.18.5", features = ["process", "rt", "rt-multi-thread"] } # Needed for `src/try_fold.rs`. pin-project-lite = "0.2.4" serde = "^1.0" serde_json = "^1.0.25"