5a581c1c90
* Journal for private txs added * Tests after adding logging to private tx fixed * Logs getter and tests added * Time and amount limit for logs added * RPC method for log retrieving added * Correct path name and time validation implemented * References for parameters added, redundant cloning reworked * References for parameters added, redundant cloning reworked * Work with json moved to the separate struct * Serialization test added * Fixed build after the merge with head * Documentation for methods fixed, redundant field removed * Fixed error usages * Timestamp trait implemented for std struct * Commented code removed * Remove timestamp source, rework serialization test * u64 replaced with SystemTime * Path made mandatory for logging * Source of monotonic time added * into_system_time method renamed * Initialize time source by max from current system time and max creation time from already saved logs * Redundant conversions removed, code a little bit reworked according to review comments * One more redundant conversion removed, rpc call simplified
46 lines
1.2 KiB
TOML
46 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]
|
|
common-types = { path = "../types" }
|
|
derive_more = "0.14.0"
|
|
ethabi = "6.0"
|
|
ethabi-contract = "6.0"
|
|
ethabi-derive = "6.0"
|
|
ethcore = { path = ".." }
|
|
ethcore-call-contract = { path = "../call-contract" }
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethcore-miner = { path = "../../miner" }
|
|
ethereum-types = "0.4"
|
|
ethjson = { path = "../../json" }
|
|
ethkey = { path = "../../accounts/ethkey" }
|
|
fetch = { path = "../../util/fetch" }
|
|
futures = "0.1"
|
|
heapsize = "0.4"
|
|
keccak-hash = "0.1.2"
|
|
log = "0.4"
|
|
parity-bytes = "0.1"
|
|
parity-crypto = "0.3.0"
|
|
parking_lot = "0.7"
|
|
trie-db = "0.11.0"
|
|
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
|
|
rand = "0.3"
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
|
rlp_derive = { path = "../../util/rlp-derive" }
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
time-utils = { path = "../../util/time-utils" }
|
|
tiny-keccak = "1.4"
|
|
transaction-pool = "2.0"
|
|
url = "1"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.5"
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|