#buf #write #char #no-alloc

no-std char-buf

A writable, fixed-length char buffer usable in no_std environments

1 unstable release

0.1.2 Feb 12, 2024
0.1.1 Oct 6, 2023
0.1.0 Oct 6, 2023

#242 in Testing

Download history 18/week @ 2024-02-07 23/week @ 2024-02-14 21/week @ 2024-02-21 10/week @ 2024-02-28 3/week @ 2024-03-06 4/week @ 2024-03-13 3/week @ 2024-03-20 18/week @ 2024-03-27 30/week @ 2024-04-03

56 downloads per month
Used in 2 crates

MIT/Apache

10KB
185 lines

crates.io docs.rs pipeline status coverage report

CharBuf

A writable, fixed-length char buffer usable in no_std environments.

use char_buf::CharBuf;
use core::fmt::Write;

// `CharBuf` with capacity `8`
type CharBuf8 = CharBuf<8>;

let mut w = CharBuf8::new();
write!(w, "x{:?}x", [1, 2]).unwrap();

assert_eq!(w, "x[1, 2]x");

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


© 2023–2024 Koichi Kitahara

No runtime deps