pub const VERSION: &str = "autosave-rs V1.0";
pub const END_MARKER: &str = "<END>";
pub const ARRAY_MARKER: &str = "@array@";
pub const SAV_EXT: &str = "sav";
pub const SAVB_EXT: &str = "savB";
pub const MAX_INCLUDE_DEPTH: usize = 10;
/// Save-file format mode.
///
/// Selects the on-disk `.sav` encoding written by autosave. Reading
/// is mode-agnostic — the reader accepts both the native `[v,v,v]`
/// array form and the C `@array@ { ... }` form.