mirror of
https://github.com/microsoft/edit.git
synced 2026-06-18 13:05:52 -05:00
Fixes #66 Fixes #124 Still doesn't have color in Terminal.app on macOS, though. Co-authored-by: Leonard Hecker <leonard@hecker.io>
37 lines
676 B
Rust
37 lines
676 B
Rust
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#![feature(
|
|
allocator_api,
|
|
breakpoint,
|
|
cold_path,
|
|
let_chains,
|
|
linked_list_cursors,
|
|
maybe_uninit_fill,
|
|
maybe_uninit_slice,
|
|
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;
|
|
pub mod cell;
|
|
pub mod document;
|
|
pub mod framebuffer;
|
|
pub mod hash;
|
|
pub mod helpers;
|
|
pub mod icu;
|
|
pub mod input;
|
|
pub mod oklab;
|
|
pub mod path;
|
|
pub mod simd;
|
|
pub mod sys;
|
|
pub mod tui;
|
|
pub mod unicode;
|
|
pub mod vt;
|