* Upgrade parity-crypto to 0.6 * More fixes * Upgrade ethabi and ethabi-derive * Fix lockfile * Patch ethabi from master * quickfix for ethash * Update forkid * Add secret store back * Fetch ethabi from crates * fetch secret-store from the right place * update to keccak-hash 0.5.1 * ethash: upgrade keccak-hash * ethash: sneaky spaces * ethash: use overlapping bytes after all * revert submodule update * wip * Use new method to impl ecrecover builtin * Fetch patches from git * Sort out todo * Remove patches Co-authored-by: Andronik Ordian <write@reusable.software>
31 lines
852 B
TOML
31 lines
852 B
TOML
[package]
|
|
description = "Clique consensus engine"
|
|
name = "clique"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
client-traits = { path = "../../client-traits" }
|
|
common-types = { path = "../../types" }
|
|
ethereum-types = "0.9.0"
|
|
ethjson = { path = "../../../json" }
|
|
parity-crypto = { version = "0.6.1", features = ["publickey"] }
|
|
engine = { path = "../../engine" }
|
|
keccak-hash = "0.5.0"
|
|
lazy_static = "1.3.0"
|
|
log = "0.4"
|
|
lru-cache = "0.1"
|
|
machine = { path = "../../machine" }
|
|
rand = "0.7.3"
|
|
parking_lot = "0.10.0"
|
|
rlp = "0.4.5"
|
|
time-utils = { path = "../../../util/time-utils" }
|
|
unexpected = { path = "../../../util/unexpected" }
|
|
|
|
[dev-dependencies]
|
|
ethcore = { path = "../..", features = ["test-helpers"] }
|
|
spec = { path = "../../spec" }
|
|
state-db = { path = "../../state-db" }
|