• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..30-Mar-2022-

benches/H30-Mar-2022-11095

src/H30-Mar-2022-435211

.cargo-checksum.jsonH A D03-May-202289 11

CHANGELOG.mdH A D30-Mar-20221.7 KiB6436

Cargo.tomlH A D30-Mar-20222 KiB6556

LICENSE-0BSDH A D30-Mar-2022665 1310

LICENSE-APACHEH A D30-Mar-202210.6 KiB202169

LICENSE-MITH A D30-Mar-20221,023 2421

README.mdH A D30-Mar-20221.1 KiB4027

RELEASE_PROCESS.mdH A D30-Mar-2022527 149

README.md

1# Adler-32 checksums for Rust
2
3[![crates.io](https://img.shields.io/crates/v/adler.svg)](https://crates.io/crates/adler)
4[![docs.rs](https://docs.rs/adler/badge.svg)](https://docs.rs/adler/)
5![CI](https://github.com/jonas-schievink/adler/workflows/CI/badge.svg)
6
7This crate provides a simple implementation of the Adler-32 checksum, used in
8the zlib compression format.
9
10Please refer to the [changelog](CHANGELOG.md) to see what changed in the last
11releases.
12
13## Features
14
15- Permissively licensed (0BSD) clean-room implementation.
16- Zero dependencies.
17- Zero `unsafe`.
18- Decent performance (3-4 GB/s).
19- Supports `#![no_std]` (with `default-features = false`).
20
21## Usage
22
23Add an entry to your `Cargo.toml`:
24
25```toml
26[dependencies]
27adler = "1.0.2"
28```
29
30Check the [API Documentation](https://docs.rs/adler/) for how to use the
31crate's functionality.
32
33## Rust version support
34
35Currently, this crate supports all Rust versions starting at Rust 1.31.0.
36
37Bumping the Minimum Supported Rust Version (MSRV) is *not* considered a breaking
38change, but will not be done without good reasons. The latest 3 stable Rust
39versions will always be supported no matter what.
40