f48780c29b
* Ethereum types updated to 0.8 version * Fix for rand usage in rpc * Cargo lock fixed after rebase * TODO added
19 lines
383 B
TOML
19 lines
383 B
TOML
[package]
|
|
description = "Parity Ethereum JSON Deserialization"
|
|
name = "ethjson"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ethereum-types = "0.8.0"
|
|
rustc-hex = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[dev-dependencies]
|
|
macros = { path = "../util/macros" }
|
|
|
|
[features]
|
|
test-helpers = []
|