mirror of
https://github.com/microsoft/edit.git
synced 2026-06-14 16:38:14 -05:00
32 lines
557 B
Rust
32 lines
557 B
Rust
#![feature(
|
|
allocator_api,
|
|
breakpoint,
|
|
inherent_str_constructors,
|
|
let_chains,
|
|
linked_list_cursors,
|
|
maybe_uninit_uninit_array_transpose,
|
|
os_string_truncate
|
|
)]
|
|
#![allow(clippy::missing_transmute_annotations, clippy::new_without_default, stable_features)]
|
|
|
|
#[macro_use]
|
|
pub mod arena;
|
|
|
|
pub mod apperr;
|
|
pub mod base64;
|
|
pub mod buffer;
|
|
mod cell;
|
|
pub mod framebuffer;
|
|
mod gap_buffer;
|
|
pub mod helpers;
|
|
pub mod icu;
|
|
pub mod input;
|
|
pub mod path;
|
|
pub mod simd;
|
|
pub mod sys;
|
|
pub mod tui;
|
|
pub mod ucd;
|
|
mod ucd_gen;
|
|
pub mod utf8;
|
|
pub mod vt;
|