8 releases

new 0.3.0 Oct 24, 2024
0.2.4 Aug 22, 2024
0.2.1 Jul 23, 2024
0.2.0 Jul 30, 2023
0.1.1 Jul 29, 2023

#1585 in Text processing

Download history 3/week @ 2024-07-01 8/week @ 2024-07-08 12/week @ 2024-07-15 149/week @ 2024-07-22 35/week @ 2024-07-29 12/week @ 2024-08-05 121/week @ 2024-08-12 262/week @ 2024-08-19 39/week @ 2024-08-26 14/week @ 2024-09-02 5/week @ 2024-09-09 11/week @ 2024-09-16 22/week @ 2024-09-23 9/week @ 2024-09-30 2/week @ 2024-10-07 18/week @ 2024-10-14

51 downloads per month
Used in 4 crates (2 directly)

MIT license

30KB
152 lines

Library for encoding and decoding data to/from binary representations using the Braille Patterns Unicode Block characters

See the documentation or the source for each function for doctest examples.

See also the bbd crate which provides a CLI utility.

use bbd_lib::*;

assert_eq!(encode(b"Hello\n", encode_nlbb, 0, 0), "⢄⠮⢦⢦⢾⢐");
assert_eq!(decode("⢄⠮⢦⢦⢾⢐", decode_nlbb), b"Hello\n");

Dependencies

~10KB