diff --git a/src/lib.rs b/src/lib.rs index 5e9e66f0..ea5b20b7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,13 +1,9 @@ #![deny(unused_imports, unused_must_use)] -//! # Crossterm -//! -//! Have you ever been disappointed when a terminal library for rust was only written for UNIX systems? -//! Crossterm provides clearing, event (input) handling, styling, cursor movement, and terminal actions for both -//! Windows and UNIX systems. -//! -//! Crossterm aims to be simple and easy to call in code. Through the simplicity of Crossterm, you do not -//! have to worry about the platform you are working with. +//! # Cross-platform Terminal Manipulation Library +//! +//! Crossterm is a pure-rust, terminal manipulation library that makes it possible to write cross-platform text-based interfaces (see [features](#features)). It supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested, +//! see [Tested Terminals](#tested-terminals) for more info). //! //! This crate supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested //! see [Tested Terminals](https://github.com/crossterm-rs/crossterm#tested-terminals)