add-ed 0.14.0

Embeddable pure rust editor based on ED
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Common imports for buffer components
use std::fmt::Debug;
use crate::history::Snapshot;

/// We export the [`Buffer`] iterators in their own module, as most users won't
/// need them.
pub mod iters;
use iters::*;

// The other modules we keep private and export their contents directly

mod line;
pub use line::*;

mod buffer;
pub use buffer::*;