29dc10c446
* Migrating use crate::Type imports to Rust 2018 edition * import name fixes * fmt * removing diff leftover * catching up with latest developments on dev * fmt * removing another diff leftover
23 lines
541 B
TOML
23 lines
541 B
TOML
[package]
|
|
description = "Parity Ethereum JSON Deserialization"
|
|
name = "ethjson"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"Gnosis Ltd <openethereum@gnosis.io>",
|
|
"Parity Technologies <admin@parity.io>"
|
|
]
|
|
|
|
[dependencies]
|
|
common-types = { path = "../ethcore/types", features = ["test-helpers"] }
|
|
parity-crypto = { version = "0.6.2", features = [ "publickey" ] }
|
|
ethereum-types = "0.9.2"
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
|
|
[dev-dependencies]
|
|
macros = { path = "../util/macros" }
|
|
maplit = "1.0.2"
|