| Crates.io | format_no_std |
| lib.rs | format_no_std |
| version | 1.2.0 |
| created_at | 2022-07-18 16:38:24.849137+00 |
| updated_at | 2024-04-30 13:31:10.015582+00 |
| description | Bare metal formatting |
| homepage | |
| repository | https://github.com/zartarn15/format_no_std |
| max_upload_size | |
| id | 627839 |
| size | 17,701 |
format_no_stdImplements
write_strto getwrite_fmt, which is used in theformat!()andformat_args!()macros. Forno_stdformatting in a bare metal environment.
Licensed under either of
at your option.
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.
Library usage example
let mut buf = [0u8; 64];
let s = format_no_std::show(
&mut buf,
format_args!("Test String {}: {}", "foo", 42),
).unwrap();
assert_eq!("Test String foo: 42", s);