cuqueclicker 1.2.1

A TUI idle clicker where you finger an ASCII ass instead of clicking a cookie.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Frozen save schemas — one module per shipped version.
//!
//! Each `vN` module is a verbatim copy of the persisted fields as they
//! existed at the time that version shipped. Once a vN module is on `main`
//! it MUST NOT be edited (except to fix a migration bug). Add `vN+1.rs`
//! with a `From<vN>`-style conversion instead.

pub mod v1;
pub mod v2;
pub mod v3;
pub mod v4;
pub mod v5;