1e332daaed
- Major refactor and cleanup. - Improved performance; - No locking when writing to stdout. - UNIX doesn't have any dynamic dispatch anymore. - Windows has improved the way to check if ANSI modes are enabled. - Removed lot's of complex API calls: `from_screen`, `from_output` - Removed `Arc<TerminalOutput>` from all internal Api's. - Removed termios dependency for UNIX systems. - Upgraded deps. - Removed about 1000 lines of code - `TerminalOutput` - `Screen` - unsafe code - Some duplicated code introduced by a previous refactor. - Raw modes UNIX systems improved - Added `NoItalic` attribute
34 lines
1.3 KiB
Markdown
34 lines
1.3 KiB
Markdown
# Crossterm Utils | crossterm common used code.
|
|
![Lines of Code][s7] [![Latest Version][s1]][l1] [![MIT][s2]][l2] [![docs][s3]][l3] [![Join us on Discord][s5]][l5]
|
|
|
|
[s1]: https://img.shields.io/crates/v/crossterm_utils.svg
|
|
[l1]: https://crates.io/crates/crossterm_utils
|
|
|
|
[s2]: https://img.shields.io/badge/license-MIT-blue.svg
|
|
[l2]: ./LICENSE
|
|
|
|
[s3]: https://docs.rs/crossterm_utils/badge.svg
|
|
[l3]: https://docs.rs/crossterm_utils/
|
|
|
|
[s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord
|
|
[l5]: https://discord.gg/K4nyTDB.
|
|
|
|
[s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master
|
|
|
|
This crate is a utilities crate used by the following [crossterm](https://crates.io/crates/crossterm) modules:
|
|
- [Crossterm Style](https://crates.io/crates/crossterm_style)
|
|
- [Crossterm Input](https://crates.io/crates/crossterm_input)
|
|
- [Crossterm Screen](https://crates.io/crates/crossterm_screen)
|
|
- [Crossterm Cursor](https://crates.io/crates/crossterm_cursor)
|
|
- [Crossterm Terminal](https://crates.io/crates/crossterm_terminal)
|
|
|
|
This crate is not meant for standalone use and is really a library with some common used code for crossterm and the above named modules.
|
|
|
|
## Authors
|
|
|
|
* **Timon Post** - *Project Owner & creator*
|
|
|
|
## License
|
|
|
|
This project is licensed under the MIT License - see the [LICENSE.md](./LICENSE) file for details
|