[package]
edition = "2021"
name = "vrf-pbft"
version = "0.1.0"
authors = ["Adel-Ayoub"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of VRF-enhanced PBFT consensus protocol"
homepage = "https://github.com/Adel-Ayoub/vrf-pbft"
documentation = "https://docs.rs/vrf-pbft"
readme = "README.md"
keywords = [
"consensus",
"pbft",
"vrf",
"blockchain",
"byzantine",
]
categories = [
"cryptography",
"algorithms",
]
license = "MIT"
repository = "https://github.com/Adel-Ayoub/vrf-pbft"
[lib]
name = "vrf_pbft"
path = "src/lib.rs"
[[example]]
name = "byzantine"
path = "examples/byzantine.rs"
[[example]]
name = "simulation"
path = "examples/simulation.rs"
[[example]]
name = "single_round"
path = "examples/single_round.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "pbft_test"
path = "tests/pbft_test.rs"
[[test]]
name = "vrf_test"
path = "tests/vrf_test.rs"
[dependencies.bincode]
version = "1.3"
[dependencies.libm]
version = "0.2"
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.vrf]
version = "0.2"