| Crates.io | json-to-xlsx |
| lib.rs | json-to-xlsx |
| version | 0.1.2 |
| created_at | 2025-07-01 15:21:46.372959+00 |
| updated_at | 2025-09-29 20:28:45.344413+00 |
| description | Simple library to convert JSON files to Excel (xlsx). |
| homepage | |
| repository | https://github.com/lukasmatta/json-to-xlsx.git |
| max_upload_size | |
| id | 1733315 |
| size | 44,796 |
Simple library to convert JSON files to Excel (xlsx).
let json_input = File::open("input.json").unwrap();
let xlsx_output = File::create("output.xlsx").unwrap();
let buf_reader = BufReader::new(json_input);
match json_to_xlsx(buf_reader, xlsx_output) {
Ok(_) => println!("Success!"),
Err(e) => println!("{e}"),
}