Skip to content

Commit

Permalink
Remove list of supported widths from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilles committed Aug 6, 2022
1 parent 4618281 commit 9e9d8cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/mrhooray/crc-rs.git"
documentation = "https://docs.rs/crc"
description = "Rust implementation of CRC(16, 32, 64) with support of various standards"
description = "Rust implementation of CRC with support of various standards"
keywords = ["crc", "crc16", "crc32", "crc64", "hash"]
categories = ["algorithms", "no-std"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Docs](https://docs.rs/crc/badge.svg)](https://docs.rs/crc)
[![License](https://img.shields.io/crates/l/crc.svg?maxAge=2592000)](https://github.com/mrhooray/crc-rs#license)

Rust implementation of CRC(8, 16, 32, 64). MSRV is 1.46.
Rust implementation of CRC. MSRV is 1.46.

## Usage
Add `crc` to `Cargo.toml`
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! # crc
//! Rust implementation of CRC(8, 16, 32, 64)
//! Rust implementation of CRC.
//!
//! ## Usage
//! ### Compute CRC16
Expand Down

0 comments on commit 9e9d8cc

Please sign in to comment.