storefd/src/lib.rs
Mathieu Trossevin 058692a20c
Move NOTIFY_SOCKET implementation into it's own crate
I will add some utility function using both crates into the main one
later.
2024-01-11 17:54:11 +01:00

11 lines
335 B
Rust

//! A library permitting interaction with the LISTEN_FDS and NOTIFY_SOCKET protocol.
#![cfg_attr(doc_cfg, feature(doc_cfg))]
#[cfg(feature = "listenfd")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "listenfd")))]
pub use storefd_listen;
#[cfg(feature = "notify")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "notify")))]
pub use storefd_notify;