Update lib.rs docs

This commit is contained in:
Timon 2023-04-07 17:29:15 +02:00
parent 923aaf517b
commit 41901c6382

View File

@ -1,13 +1,9 @@
#![deny(unused_imports, unused_must_use)]
//! # Crossterm
//! # Cross-platform Terminal Manipulation Library
//!
//! 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.
//! 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)