16 releases (5 stable)

2.0.0 Feb 10, 2024
1.3.0 Feb 10, 2024
1.2.0 Apr 12, 2023
1.1.1 Feb 11, 2023
0.3.1 Jun 25, 2020

#138 in Operating systems

Download history 83/week @ 2023-12-22 82/week @ 2023-12-29 294/week @ 2024-01-05 142/week @ 2024-01-12 219/week @ 2024-01-19 175/week @ 2024-01-26 125/week @ 2024-02-02 215/week @ 2024-02-09 524/week @ 2024-02-16 458/week @ 2024-02-23 272/week @ 2024-03-01 220/week @ 2024-03-08 195/week @ 2024-03-15 159/week @ 2024-03-22 278/week @ 2024-03-29 184/week @ 2024-04-05

873 downloads per month
Used in 7 crates (4 directly)

MIT/Apache

25KB
421 lines

print_bytes

This crate allows printing broken UTF-8 bytes to an output stream as losslessly as possible.

Usually, paths are printed by calling Path::display or Path::to_string_lossy beforehand. However, both of these methods are always lossy; they misrepresent some valid paths in output. The same is true when using String::from_utf8_lossy to print any other UTF-8–like byte sequence.

Instead, this crate only performs a lossy conversion when the output device is known to require Unicode, to make output as accurate as possible. When necessary, any character sequence that cannot be represented will be replaced with REPLACEMENT_CHARACTER. That convention is shared with the standard library, which uses the same character for its lossy conversion functions.

GitHub Build Status

Usage

Add the following lines to your "Cargo.toml" file:

[dependencies]
print_bytes = "2.0"

See the documentation for available functionality and examples.

Rust version support

The minimum supported Rust toolchain version is currently Rust 1.74.0.

Minor version updates may increase this version requirement. However, the previous two Rust releases will always be supported. If the minimum Rust version must not be increased, use a tilde requirement to prevent updating this crate's minor version:

[dependencies]
print_bytes = "~2.0"

License

Licensing terms are specified in COPYRIGHT.

Unless you explicitly state otherwise, any contribution submitted for inclusion in this crate, as defined in LICENSE-APACHE, shall be licensed according to COPYRIGHT, without any additional terms or conditions.

Dependencies

~0–11MB
~79K SLoC