umya-spreadsheet
Description
umya-spreadsheet is a library written in pure Rust and read and write xlsx file.
Caution
This is BETA version.
- It contains many bugs.
- Often changes are not backward compatible.
Example
extern crate umya_spreadsheet;
// reader
let path = new;
let mut book = read.unwrap;
// or
// new file
let mut book = new_file;
// change value
let _ = book.get_sheet_mut.get_cell_mut.set_value;
// read value
let a1_value = book.get_sheet.get_cell.unwrap.get_value;
assert_eq!; // TEST1
// writer
let path = new;
let _ = write;
License
MIT