[package] name = "calloop-subproc" version = "1.0.0" authors = ["Jason Heeris "] description = "Subprocess support for the Calloop event loop" keywords = [ "events", "loop", "unix", "subprocess", "multiprocessing", ] edition = "2021" license = "MIT" repository = "https://gitlab.com/detly/calloop-subproc" [badges] maintenance = { status = "actively-developed" } [dependencies] async-process = "1.0" futures = "0.3.17" log = "0.4" thiserror = "1.0.29" [dependencies.calloop] version = "0.10.0" features = ["executor"] [dev-dependencies] env_logger = "0.8" test-binary = "1.0.1" # Use nightly features only when building docs, so we can get automatic # annotations on gated features. [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] # These are the test binaries we call in the integration tests. [[bin]] bench = false test = false name = "test_status" [[bin]] bench = false test = false name = "test_output" [[bin]] bench = false test = false name = "test_output_asap"