miniexcel 0.1.0

Experimental Rust XLSX reader and writer for MiniExcel
Documentation
1
2
3
4
5
6
7
8
9
10
use std::path::PathBuf;

pub fn fixture(relative_path: &str) -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR"))
        .join("..")
        .join("tests")
        .join("data")
        .join("xlsx")
        .join(relative_path)
}