cuqueclicker_lib/save/versions/mod.rs
1//! Frozen save schemas — one module per shipped version.
2//!
3//! Each `vN` module is a verbatim copy of the persisted fields as they
4//! existed at the time that version shipped. Once a vN module is on `main`
5//! it MUST NOT be edited (except to fix a migration bug). Add `vN+1.rs`
6//! with a `From<vN>`-style conversion instead.
7
8pub mod v1;
9pub mod v2;
10pub mod v3;
11pub mod v4;
12pub mod v5;