storefd/src/lib.rs

11 lines
335 B
Rust
Raw Normal View History

2024-01-08 11:25:17 +01:00
//! A library permitting interaction with the LISTEN_FDS and NOTIFY_SOCKET protocol.
#![cfg_attr(doc_cfg, feature(doc_cfg))]
2023-12-08 12:54:41 +01:00
#[cfg(feature = "listenfd")]
2024-01-08 11:25:17 +01:00
#[cfg_attr(doc_cfg, doc(cfg(feature = "listenfd")))]
pub use storefd_listen;
2023-12-08 14:46:54 +01:00
#[cfg(feature = "notify")]
2024-01-08 11:25:17 +01:00
#[cfg_attr(doc_cfg, doc(cfg(feature = "notify")))]
pub use storefd_notify;