Skip to main content

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 composite_buffer;
7pub mod control_event;
8pub mod cursor;
9pub mod document_model;
10pub mod edit;
11pub mod encoding;
12pub mod encoding_heuristics;
13pub mod event;
14pub mod filesystem;
15pub mod line_diff;
16pub mod marker;
17pub mod marker_tree;
18pub mod piece_tree;
19pub mod piece_tree_diff;