Adding Crates.io (#3)

* Adding Cargo required fields.

* Adding Crates.io badge.
This commit is contained in:
Frederic Jacobs
2016-11-17 12:10:18 +01:00
committed by GitHub
parent b4cd7537b5
commit 847cb7c275
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,3 @@
[package]
name = "merkle"
version = "0.1.0"
@ -8,6 +7,12 @@ authors = [
"Romain Ruetschi <romain.ruetschi@gmail.com>"
]
description = "Merkle is a Rust implementation of a Merkle tree with support for generation of inclusion proofs."
license = "BSD-3-Clause"
documentation = "https://spinresearch.github.io/merkle.rs/merkle/index.html"
homepage = "https://github.com/SpinResearch/merkle.rs"
repository = "https://github.com/SpinResearch/merkle.rs"
[dependencies]
rust-crypto = "^0.2.36"

View File

@ -4,6 +4,7 @@
![Status](https://img.shields.io/badge/status-wip-red.svg?style=flat)
[![Issues](http://img.shields.io/github/issues/SpinResearch/merkle.rs.svg?style=flat)](https://github.com/SpinResearch/merkle.rs/issues)
![License](https://img.shields.io/badge/license-bsd3-brightgreen.svg?style=flat)
[![Crates.io](https://img.shields.io/crates/v/merkle.svg)](https://crates.io/crates/merkle)
> *merkle.rs* is a Rust implementation of a [Merkle tree](https://en.wikipedia.org/wiki/Merkle_tree).