9 releases (stable)

1.1.7 Jun 22, 2024
1.1.5 Apr 11, 2023
1.1.4 Aug 19, 2022
1.1.1 Jul 13, 2021
0.8.7 Nov 17, 2019

#137 in Compression

Download history 6462/week @ 2024-04-04 6695/week @ 2024-04-11 6335/week @ 2024-04-18 5138/week @ 2024-04-25 6150/week @ 2024-05-02 6238/week @ 2024-05-09 7630/week @ 2024-05-16 5843/week @ 2024-05-23 7011/week @ 2024-05-30 6028/week @ 2024-06-06 6171/week @ 2024-06-13 6400/week @ 2024-06-20 5346/week @ 2024-06-27 5610/week @ 2024-07-04 5627/week @ 2024-07-11 3943/week @ 2024-07-18

21,547 downloads per month
Used in 17 crates (via xlsxwriter)

MIT license

2MB
42K SLoC

C 40K SLoC // 0.2% comments Bitbake 527 SLoC Shell 432 SLoC // 0.2% comments Zig 283 SLoC // 0.1% comments Perl 237 SLoC // 0.2% comments Rust 123 SLoC // 0.0% comments C++ 64 SLoC // 0.1% comments Swift 38 SLoC // 0.1% comments Automake 34 SLoC

Contains (Cab file, 16KB) vbaProject.bin, (obscure autoconf code, 1KB) configure.ac

xlsxwriter-rs

Build GitHub GitHub top language Crates.io Docs.rs

Rust binding of libxlsxwriter

Supported Features

  • 100% compatible Excel XLSX files.
  • Full Excel formatting.
  • Merged cells.
  • Autofilters.
  • Data validation and drop down lists.
  • Worksheet PNG/JPEG images.

Coming soon

  • Charts.

Feature Flags

  • no-md5: Disable image de-duplication and remove md5 function. (See upstream document to learn more).
  • use-openssl-md5: Use OpenSSL implementation of md5 function. (See upstream document to learn more).
  • system-zlib: Use system zlib instead of included zlib.

Build requirements

  • LLVM and clang

How to build on windows

  1. Install Visual Studio
  2. Install LLVM
  3. Set environment variable LIBCLANG_PATH as C:\Program Files\LLVM\bin
  4. Run build

Example

Result Image

let workbook = Workbook::new("simple1.xlsx")?;

let mut sheet1 = workbook.add_worksheet(None)?;
sheet1.write_string(0, 0, "Red text", Some(&Format::new().set_font_color(FormatColor::Red)))?;
sheet1.write_number(0, 1, 20., None)?;
sheet1.write_formula_num(1, 0, "=10+B1", None, 30.)?;
sheet1.write_url(
    1,
    1,
    "https://github.com/informationsea/xlsxwriter-rs",
    Some(&Format::new().set_font_color(FormatColor::Blue).set_underline(FormatUnderline::Single)),
)?;
sheet1.merge_range(2, 0, 3, 2, "Hello, world", Some(
    &Format::new().set_font_color(FormatColor::Green).set_align(FormatAlignment::CenterAcross)
                  .set_vertical_align(FormatVerticalAlignment::VerticalCenter)))?;

sheet1.set_selection(1, 0, 1, 2);
sheet1.set_tab_color(FormatColor::Cyan);
workbook.close()?;

Run Example with Cargo

You can explore this example locally following the steps below:

  1. Install LLVM and set LIBCLANG_PATH if you are using windows. (see bindgen doc for details)
  2. clone or fork this repository
  3. git submodule update --init --recursive
    • The above command downloads the required C library so we can compile
  4. cargo run --example hello_spreadsheet

You should then see the example in target/simple1.xlsx. Enjoy!

No runtime deps