Add recommended metadata to Cargo.toml

The Rust API guidelines recommend a set of metadata values:
https://rust-lang-nursery.github.io/api-guidelines/documentation.html#c-metadata
This commit is contained in:
Andreas Fackler 2018-07-04 12:56:22 +02:00
parent 38178af124
commit fe47291709
1 changed files with 9 additions and 0 deletions

View File

@ -2,6 +2,15 @@
name = "hbbft"
version = "0.1.0"
authors = ["Vladimir Komendantskiy <komendantsky@gmail.com>"]
description = "Honey Badger Byzantine fault tolerant consensus algorithm"
license = "LGPL-3.0"
repository = "https://github.com/poanetwork/hbbft"
readme = "https://github.com/poanetwork/hbbft/blob/master/README.md"
keywords = ["consensus", "asynchronous", "threshold"]
categories = ["algorithms", "asynchronous", "cryptography", "network-programming"]
[badges]
travis-ci = { repository = "poanetwork/hbbft" }
[dependencies]
bincode = "1.0.0"