Skip to content

Commit 2e1dcce

Browse files
committed
add readme
1 parent 5e8c183 commit 2e1dcce

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

block-buffer/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ name = "block-buffer"
33
version = "0.10.0" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
6-
description = "Fixed size buffer for block processing of data"
6+
description = "Buffer type for block processing of data"
77
documentation = "https://docs.rs/block-buffer"
88
repository = "https://github.com/RustCrypto/utils"
99
keywords = ["block", "buffer"]
1010
categories = ["cryptography", "no-std"]
1111
edition = "2018"
12+
readme = "README.md"
1213

1314
[dependencies]
1415
generic-array = "0.14"

block-buffer/README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# [RustCrypto]: Block Buffer
2+
3+
[![crate][crate-image]][crate-link]
4+
[![Docs][docs-image]][docs-link]
5+
![Apache2/MIT licensed][license-image]
6+
![Rust Version][rustc-image]
7+
[![Project Chat][chat-image]][chat-link]
8+
[![Build Status][build-image]][build-link]
9+
10+
Buffer type for block processing of data with minimized amount of unreachable panics.
11+
12+
## License
13+
14+
Licensed under either of:
15+
16+
* [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
17+
* [MIT license](http://opensource.org/licenses/MIT)
18+
19+
at your option.
20+
21+
### Contribution
22+
23+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
24+
25+
[//]: # (badges)
26+
27+
[crate-image]: https://img.shields.io/crates/v/block-buffer.svg
28+
[crate-link]: https://crates.io/crates/block-buffer
29+
[docs-image]: https://docs.rs/block-buffer/badge.svg
30+
[docs-link]: https://docs.rs/block-buffer/
31+
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
32+
[rustc-image]: https://img.shields.io/badge/rustc-1.41+-blue.svg
33+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
34+
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260052-utils
35+
[build-image]: https://github.com/RustCrypto/utils/workflows/block-buffer/badge.svg?branch=master&event=push
36+
[build-link]: https://github.com/RustCrypto/utils/actions/workflows/block-buffer.yml
37+
38+
[//]: # (general links)
39+
40+
[RustCrypto]: https://github.com/rustcrypto

0 commit comments

Comments
 (0)