4 releases (2 breaking)

0.3.0 Jun 18, 2021
0.2.0 Oct 3, 2020
0.1.1 Sep 30, 2020
0.1.0 Sep 24, 2020

#764 in Data structures

Download history 9/week @ 2023-11-27 5/week @ 2023-12-04 4/week @ 2023-12-11 10/week @ 2023-12-18 7/week @ 2023-12-25 8/week @ 2024-01-08 13/week @ 2024-02-05 7/week @ 2024-02-12 3/week @ 2024-02-19 54/week @ 2024-02-26 49/week @ 2024-03-04 35/week @ 2024-03-11

142 downloads per month
Used in 2 crates

Apache-2.0 OR MIT

60KB
864 lines

text-style-rs

The text-style crate provides types and conversions for styled text.

Many crates produce or consume styled text. But converting between these crates requires lots of boilerplate code. This crate defines a subset of common types for styled text and conversion methods for multiple crates. This makes it easy to convert between the different formats and to prepare output that can be rendered by any of the supported crates.

let s = text_style::StyledStr::plain("test").bold();

let mut w = std::io::stdout();
text_style::ansi_term::render(&mut w, &s).expect("Rendering failed");
text_style::crossterm::render(&mut w, &s).expect("Rendering failed");
text_style::termion::render(&mut w, &s).expect("Rendering failed");

For more information, see the API documentation.

Features

This crate has the following features:

All features are disabled per default.

Minimum Supported Rust Version

This crate supports Rust 1.45.0 or later.

Contributing

Contributions to this project are welcome! Please submit patches to the mailing list ~ireas/public-inbox@lists.sr.ht (archive) using the [PATCH text-style-rs] subject prefix. For more information, see the Contributing Guide.

Contact

For bug reports, feature requests and other messages, please send a mail to ~ireas/public-inbox@lists.sr.ht (archive) using the [text-style-rs] prefix in the subject.

License

This project is dual-licensed under the Apache-2.0 and MIT licenses. The documentation and examples contained in this repository are licensed under the Creative Commons Zero license. You can find a copy of the license texts in the LICENSES directory.

merge-rs complies with version 3.0 of the REUSE specification.

Dependencies

~0–5MB
~54K SLoC