daemonbase 0.1.5

A library for providing the foundation for daemon processes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Foundational utilities for system daemons.
//!
//! Daemons (as they are known on Unix-based systems) are background processes
//! that provide continuous services, e.g. monitoring the system, playing
//! music, and serving websites. This class of programs have many shared
//! concerns: they usually load configuration files, interact with system
//! privileges, and log events. `daemonbase` offers simple but opinionated
//! solutions to these needs.
//
// TODO: Document usage.
// TODO: Document portability.
//
pub mod config;
pub mod error;
pub mod logging;
pub mod process;