f48780c29b
* Ethereum types updated to 0.8 version * Fix for rand usage in rpc * Cargo lock fixed after rebase * TODO added
23 lines
574 B
TOML
23 lines
574 B
TOML
[package]
|
|
description = "A crate to interact with the block rewards contract."
|
|
name = "block-reward"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
common-types = { path = "../types" }
|
|
engine = { path = "../engine" }
|
|
ethabi = "9.0.1"
|
|
ethabi-derive = "9.0.1"
|
|
ethabi-contract = "9.0.0"
|
|
ethereum-types = "0.8.0"
|
|
keccak-hash = "0.4.0"
|
|
machine = { path = "../machine" }
|
|
trace = { path = "../trace" }
|
|
|
|
[dev-dependencies]
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
|
spec = { path = "../spec" }
|