| Crates.io | fmtex |
| lib.rs | fmtex |
| version | 0.1.1 |
| created_at | 2024-08-07 03:35:45.528404+00 |
| updated_at | 2024-09-20 16:19:11.114994+00 |
| description | Extra format adaptors |
| homepage | |
| repository | https://github.com/nanoqsh/fmtex |
| max_upload_size | |
| id | 1328033 |
| size | 10,502 |
Add the dependency to your project with:
cargo add fmtex
Use library traits to format something:
use fmtex::prelude::*;
let s = [1, 2, 3].joined(", ").to_string();
assert_eq!(s, "1, 2, 3");