xlq 0.2.1

Agent-safe transactional runtime for Excel workbooks: inspect, diff, recalculate, and surgically edit .xlsx files with receipts, an undo journal, and byte-fidelity guarantees.
1
2
3
4
5
6
7
8
9
10
11
12
//! Benchmark helper: load a workbook into ironcalc and do NOTHING else.
//!
//! Exists so benchmarks/run_bench.sh can measure the engine's parse/load
//! time in isolation, instead of inferring it from `xlq inspect` (which
//! also hashes the file and computes the census).

fn main() {
    let path = std::env::args()
        .nth(1)
        .expect("usage: load-only <file.xlsx>");
    ironcalc::import::load_from_xlsx(&path, "en", "UTC", "en").expect("load workbook");
}