repline: Promote to its own crate!

cl-repl: Major refactor based on the design of typeck.rs
This commit is contained in:
2024-04-19 07:30:17 -05:00
parent 01ffdb67a6
commit 2a62a1c714
21 changed files with 967 additions and 1114 deletions

13
repline/src/lib.rs Normal file
View File

@@ -0,0 +1,13 @@
//! A small pseudo-multiline editing library
mod editor;
mod iter;
mod raw;
pub mod error;
pub mod prebaked;
pub mod repline;
pub use error::Error;
pub use prebaked::{read_and, Response};
pub use repline::Repline;