fresh/model/mod.rs
1//! Core data model for documents
2//!
3//! This module contains pure data structures with minimal external dependencies.
4
5pub mod buffer;
6pub mod buffer_position;
7pub mod composite_buffer;
8pub mod control_event;
9pub mod cursor;
10pub mod document_model;
11pub mod edit;
12pub mod encoding;
13pub mod encoding_heuristics;
14pub mod event;
15pub mod filesystem;
16pub mod line_diff;
17pub mod marker;
18pub mod marker_tree;
19pub mod piece_tree;
20pub mod piece_tree_diff;