calcli 0.2.0

Fast terminal calculator (TUI) with history, variables and engineering helpers
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The persistence layer: a [`StateRepository`] port and its TOML
//! implementation, decoupling the rest of the app from the on-disk format.

pub mod repository;
pub mod toml_state;

pub use repository::{
    PersistedEntry, PersistedSettings, PersistedState, PersistedValue,
    StateRepository,
};
pub use toml_state::TomlStateRepository;