14 lines
339 B
Rust
14 lines
339 B
Rust
#![allow(clippy::manual_clamp)]
|
|
|
|
pub mod directory;
|
|
pub mod encoding;
|
|
pub mod language;
|
|
pub mod lens;
|
|
pub mod meta;
|
|
pub mod rope_text_pos;
|
|
pub mod style;
|
|
pub mod syntax;
|
|
// This is primarily being re-exported to avoid changing every single usage
|
|
// in lapce-app. We should probably remove this at some point.
|
|
pub use floem_editor_core::*;
|