45f27cec34
* add more tx tests (#11038) * Fix parallel transactions race-condition (#10995) * Add blake2_f precompile (#11017) * [trace] introduce trace failed to Ext (#11019) * Edit publish-onchain.sh to use https (#11016) * Fix deadlock in network-devp2p (#11013) * EIP 1108: Reduce alt_bn128 precompile gas costs (#11008) * xDai chain support and nodes list update (#10989) * EIP 2028: transaction gas lowered from 68 to 16 (#10987) * EIP-1344 Add CHAINID op-code (#10983) * manual publish jobs for releases, no changes for nightlies (#10977) * [blooms-db] Fix benchmarks (#10974) * Verify transaction against its block during import (#10954) * Better error message for rpc gas price errors (#10931) * tx-pool: accept local tx with higher gas price when pool full (#10901) * Fix fork choice (#10837) * Cleanup unused vm dependencies (#10787) * Fix compilation on recent nightlies (#10991)
36 lines
1001 B
TOML
36 lines
1001 B
TOML
[package]
|
|
description = "Parity Ethereum Blockchain Database, Test Generator, Configuration, Caching, Importing Blocks, and Block Information"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore-blockchain"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.11"
|
|
blooms-db = { path = "../../util/blooms-db" }
|
|
common-types = { path = "../types" }
|
|
ethcore-db = { path = "../db" }
|
|
ethereum-types = "0.4"
|
|
heapsize = "0.4"
|
|
itertools = "0.5"
|
|
keccak-hash = "0.1"
|
|
kvdb = "0.1"
|
|
log = "0.4"
|
|
parity-bytes = "0.1"
|
|
parking_lot = "0.7"
|
|
rand = "0.6"
|
|
rayon = "1.1"
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
|
rlp_compress = { path = "../../util/rlp-compress" }
|
|
rlp_derive = { path = "../../util/rlp-derive" }
|
|
triehash-ethereum = { version = "0.2", path = "../../util/triehash-ethereum" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.5"
|
|
ethkey = { path = "../../accounts/ethkey" }
|
|
rustc-hex = "1.0"
|
|
tempdir = "0.3"
|
|
kvdb-memorydb = "0.1"
|