72fd1fa58d
* Fetch `parity-common` crates from crates.io * Add doc tests from `patricia-trie` to `patricia-trie-ethereum` Fix/update a few deps * [ethkey] upgrade ethereum-types * [whisper] update deps * [network] deps * [network-devp2p] deps * [journaldb] deps * [fastmap] deps * [miner] deps and test fixes * [machine] deps * [json] deps * [hw] deps * [ethash] deps * [registrar] deps * Update a few more dependencies with new ethabi-* * [updater] Update deps * deps * [ethcore] Update deps * Use new parity-snappy and parity-rocksdb crates * Updated submodules * Use parity-snappy 0.1 * Use kvdb-rocksdb 0.1.2 * Don't use latest ethereum/tests * Fix merge conflicts errors * Remove superseeded comment * Address grumbles: add newlines, add/remove spaces
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
description = "Parity Private Transactions"
|
|
name = "ethcore-private-tx"
|
|
version = "1.0.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = { version = "0.12", default-features = false }
|
|
ethabi = "5.1.2"
|
|
ethabi-derive = "5.1.3"
|
|
ethabi-contract = "5.1.1"
|
|
ethcore = { path = ".." }
|
|
parity-bytes = "0.1"
|
|
parity-crypto = "0.1"
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethcore-logger = { path = "../../logger" }
|
|
ethcore-miner = { path = "../../miner" }
|
|
ethcore-transaction = { path = "../transaction" }
|
|
ethereum-types = "0.4"
|
|
ethjson = { path = "../../json" }
|
|
ethkey = { path = "../../ethkey" }
|
|
fetch = { path = "../../util/fetch" }
|
|
futures = "0.1"
|
|
heapsize = "0.4"
|
|
keccak-hash = "0.1.2"
|
|
log = "0.4"
|
|
parking_lot = "0.6"
|
|
patricia-trie = "0.2.1"
|
|
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
|
|
rand = "0.3"
|
|
rlp = { version = "0.2.4", features = ["ethereum"] }
|
|
rlp_derive = { path = "../../util/rlp_derive" }
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
tiny-keccak = "1.4"
|
|
transaction-pool = "1.13.2"
|
|
url = "1"
|
|
|
|
[dev-dependencies]
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|