2023-04-27 17:18:24 +00:00
|
|
|
[package]
|
|
|
|
name = "consensus-engine"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-22 12:56:56 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
2023-07-05 09:28:22 +00:00
|
|
|
blake2 = "0.10"
|
2023-06-12 13:14:49 +00:00
|
|
|
bls-signatures = "0.14"
|
|
|
|
integer-encoding = "3"
|
|
|
|
sha2 = "0.10"
|
|
|
|
rand = "0.8"
|
|
|
|
rand_chacha = "0.3"
|
|
|
|
thiserror = "1"
|
2023-07-04 09:39:28 +00:00
|
|
|
fraction = { version = "0.13" }
|
2023-05-01 15:47:56 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-06-21 13:35:32 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
proptest = "1.2.0"
|
|
|
|
proptest-state-machine = "0.1.0"
|