//! On-disk layout constants.
pub const CRON: &str = "cron";
pub const MAILBOX: &str = "mailbox";
pub const KEYS: &str = "keys";
pub const CHROOTS: &str = "chroots";
pub const TICKS: &str = "ticks";
pub const EVENTS: &str = "events";
/// File under [`TICKS`] recording the latest committed tick number.
pub const TICK_CURRENT: &str = "current";
/// Separator between cron schedule fields in directory names (minute_hour_dom_mon_dow).
pub const CRON_FIELD_SEP: char = '_';