36 stable releases

1.28.0 Sep 26, 2024
1.26.0 Jul 22, 2024
1.24.0 Aug 26, 2022
1.23.3 Mar 6, 2022
1.2.127 Mar 20, 2015

#12 in Compression

Download history 232477/week @ 2024-07-19 230371/week @ 2024-07-26 225616/week @ 2024-08-02 258479/week @ 2024-08-09 261645/week @ 2024-08-16 248483/week @ 2024-08-23 233156/week @ 2024-08-30 257782/week @ 2024-09-06 226776/week @ 2024-09-13 274797/week @ 2024-09-20 246257/week @ 2024-09-27 298720/week @ 2024-10-04 275563/week @ 2024-10-11 296470/week @ 2024-10-18 313452/week @ 2024-10-25 292242/week @ 2024-11-01

1,236,689 downloads per month
Used in 849 crates (116 directly)

MIT license

1MB
22K SLoC

C 18K SLoC // 0.2% comments Visual Studio Project 1.5K SLoC Rust 1.5K SLoC // 0.1% comments Python 804 SLoC // 0.1% comments Shell 482 SLoC // 0.1% comments Batch 195 SLoC // 0.1% comments C++ 171 SLoC // 0.2% comments Visual Studio Solution 130 SLoC Bitbake 69 SLoC // 0.3% comments

lz4

Build Status Crates.io Join the chat at https://gitter.im/bozaro/lz4-rs Rustdoc

NOTE: 10xGenomics is the new official home of lz4-rs, replacing https://github.com/bozaro/lz4-rs

This repository contains binding for lz4 compression library (https://github.com/Cyan4973/lz4).

LZ4 is a very fast lossless compression algorithm, providing compression speed at 400 MB/s per core, with near-linear scalability for multi-threaded applications. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems.

Usage

Put this in your Cargo.toml:

[dependencies]
lz4 = "1.23.1"

Sample code for compression/decompression:

extern crate lz4;

use std::env;
use std::fs::File;
use std::io::{self, Result};
use std::path::{Path, PathBuf};

use lz4::{Decoder, EncoderBuilder};

fn main() {
    println!("LZ4 version: {}", lz4::version());

    for path in env::args().skip(1).map(PathBuf::from) {
        if let Some("lz4") = path.extension().and_then(|e| e.to_str()) {
            decompress(&path, &path.with_extension("")).unwrap();
        } else {
            compress(&path, &path.with_extension("lz4")).unwrap();
        }
    }
}

fn compress(source: &Path, destination: &Path) -> Result<()> {
    println!("Compressing: {} -> {}", source.display(), destination.display());

    let mut input_file = File::open(source)?;
    let output_file = File::create(destination)?;
    let mut encoder = EncoderBuilder::new()
        .level(4)
        .build(output_file)?;
    io::copy(&mut input_file, &mut encoder)?;
    let (_output, result) = encoder.finish();
    result
}

fn decompress(source: &Path, destination: &Path) -> Result<()> {
    println!("Decompressing: {} -> {}", source.display(), destination.display());

    let input_file = File::open(source)?;
    let mut decoder = Decoder::new(input_file)?;
    let mut output_file = File::create(destination)?;
    io::copy(&mut decoder, &mut output_file)?;

    Ok(())
}

Dependencies