Registry / serialization / calamine

calamine

JSON →
library0.35.0rscratesunverified

A pure Rust library for reading Excel and OpenDocument Spreadsheet files.

# Cargo.toml [dependencies] calamine = "0.35.0"
INSTALL
IMPORT
SIG · CALAMINE
C
calamine
serializationrustv0.35.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

open_workbook
use calamine::{open_workbook, Reader, Xlsx};

Open an Excel file and read its first worksheet.

use calamine::{open_workbook, Reader, Xlsx}; fn main() { let mut workbook: Xlsx<_> = open_workbook("data.xlsx").unwrap(); if let Some(Ok(range)) = workbook.worksheet_range("Sheet1") { for row in range.rows() { println!("{:?}", row); } } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.35.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
21 hits · last 30 days
node
18
Amazon
1
OpenAI (training)
1
Resources
calamine — cargo add calamine · libregistry