23 releases (breaking)

0.19.2 Mar 29, 2024
0.19.1 Jun 29, 2023
0.18.0 Jun 12, 2023
0.17.0 Mar 7, 2023
0.5.0 Jul 14, 2021

#1361 in Text processing

Download history 1/week @ 2024-01-04 1/week @ 2024-01-11 7/week @ 2024-02-15 49/week @ 2024-02-22 8/week @ 2024-02-29 11/week @ 2024-03-07 14/week @ 2024-03-14 11/week @ 2024-03-21 157/week @ 2024-03-28 17/week @ 2024-04-04

202 downloads per month
Used in 3 crates (2 directly)

Apache-2.0…

42KB
1K SLoC

basic-text

Basic Text strings and I/O streams

Github Actions CI Status crates.io page docs.rs docs

This repository hosts a project to define a text format called Basic Text, a subset of Unicode that focuses on text: it excludes unprintable control characters, characters which depend on out-of-band information to interpret, non-characters, deprecated characters, and more, while aiming to preserve everything of practical use to plain text and formats built on top of it. See the Book for more information.

It also includes a Rust crate which aims to implement the Basic Text format, providing several utilities:

  • TextString and TextStr are similar to the standard library's String and str, but use the Basic Text string format, along with a text!("...") macro for Basic Text string literals.

  • TextReader and TextWriter are input and output streams which use the Basic Text stream format. On input, content is converted in a way which is lossy with respect to the original bytestream. Output uses the "strict" conversion method, in which invalid content is diagnosed with errors.

  • BufReadText, an extension trait that adds text_lines and text_lines_lossy to BufRead implementations for reading lines from an input stream as BasicText strings.

  • TextDuplexer is a Duplex for reading and writing on an interactive stream using Basic Text.

The code here is usable, and implements everything in the Basic Text spec, but is not very mature or optimized yet.

Dependencies

~1–1.6MB
~58K SLoC