forked from paritytech/finality-grandpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "finality-grandpa"
version = "0.12.0"
description = "PBFT-based finality gadget for blockchains"
authors = ["Parity Technologies <admin@parity.io>"]
license = "Apache-2.0"
repository = "https://github.com/paritytech/finality-grandpa"
edition = "2018"
[dependencies]
futures = { version = "0.3.1", default-features = false }
futures-timer = { version = "2.0.2", optional = true }
log = { version = "0.4", optional = true }
parking_lot = { version = "0.9", optional = true }
parity-scale-codec = { version = "1.0.3", optional = true, default-features = false, features = ["derive"] }
num = { package = "num-traits", version = "0.2", default-features = false }
rand = {version = "0.6.0", optional = true }
either = { version = "1.5.3", default-features = false }
[dev-dependencies]
rand = "0.7.0"
quickcheck = "0.9"
[features]
default = ["std"]
std = ["parity-scale-codec/std", "num/std", "parking_lot", "log", "futures-timer", "futures/executor"]
derive-codec = ["parity-scale-codec"]
test-helpers = ["fuzz-helpers", "rand", "std"]
fuzz-helpers = []