openethereum/crates/rpc/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.9 KiB
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Parity Ethereum JSON-RPC Servers (WS, HTTP, IPC)"
name = "parity-rpc"
version = "1.12.0"
2016-01-26 13:14:22 +01:00
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
2016-01-26 13:14:22 +01:00
[lib]
[dependencies]
ansi_term = "0.10"
futures = "0.1.6"
log = "0.4"
order-stat = "0.1"
parking_lot = "0.11.1"
rand = "0.7.3"
rand_xorshift = "0.2.0"
2017-07-06 11:36:15 +02:00
rustc-hex = "1.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tempdir = "0.3"
2018-05-31 13:53:09 +02:00
tiny-keccak = "1.4"
tokio-timer = "0.1"
transient-hashmap = "0.4"
itertools = "0.5"
2020-09-21 11:36:28 +02:00
jsonrpc-core = "15.0.0"
jsonrpc-derive = "15.0.0"
jsonrpc-http-server = "15.0.0"
jsonrpc-ws-server = "15.0.0"
jsonrpc-ipc-server = "15.0.0"
jsonrpc-pubsub = "15.0.0"
common-types = { path = "../ethcore/types" }
2021-01-13 18:03:12 +01:00
ethash = { path = "../concensus/ethash" }
ethcore = { path = "../ethcore" }
ethcore-accounts = { path = "../accounts", optional = true }
2021-01-13 18:03:12 +01:00
ethcore-logger = { path = "../../bin/oe/logger" }
ethcore-miner = { path = "../concensus/miner" }
ethcore-network = { path = "../net/network" }
2018-04-10 12:13:49 +02:00
ethcore-sync = { path = "../ethcore/sync" }
ethereum-types = "0.9.2"
parity-bytes = "0.1"
parity-crypto = { version = "0.6.2", features = [ "publickey" ] }
eip-712 = { path = "../util/EIP-712" }
2021-01-13 18:03:12 +01:00
ethjson = { path = "../ethjson" }
ethkey = { path = "../accounts/ethkey" }
ethstore = { path = "../accounts/ethstore" }
2021-01-13 18:03:12 +01:00
fetch = { path = "../net/fetch" }
keccak-hash = "0.5.0"
2021-01-13 18:03:12 +01:00
parity-runtime = { path = "../runtime/runtime" }
parity-version = { path = "../util/version" }
rlp = { version = "0.4.6" }
2017-02-17 16:18:31 +01:00
stats = { path = "../util/stats" }
2021-01-13 18:03:12 +01:00
vm = { path = "../vm/vm" }
[dev-dependencies]
ethcore = { path = "../ethcore", features = ["test-helpers"] }
ethcore-accounts = { path = "../accounts" }
2021-01-13 18:03:12 +01:00
ethcore-io = { path = "../runtime/io" }
ethcore-network = { path = "../net/network" }
fake-fetch = { path = "../net/fake-fetch" }
New Transaction Queue implementation (#8074) * Implementation of Verifier, Scoring and Ready. * Queue in progress. * TransactionPool. * Prepare for txpool release. * Miner refactor [WiP] * WiP reworking miner. * Make it compile. * Add some docs. * Split blockchain access to a separate file. * Work on miner API. * Fix ethcore tests. * Refactor miner interface for sealing/work packages. * Implement next nonce. * RPC compiles. * Implement couple of missing methdods for RPC. * Add transaction queue listeners. * Compiles! * Clean-up and parallelize. * Get rid of RefCell in header. * Revert "Get rid of RefCell in header." This reverts commit 0f2424c9b7319a786e1565ea2a8a6d801a21b4fb. * Override Sync requirement. * Fix status display. * Unify logging. * Extract some cheap checks. * Measurements and optimizations. * Fix scoring bug, heap size of bug and add cache * Disable tx queueing and parallel verification. * Make ethcore and ethcore-miner compile again. * Make RPC compile again. * Bunch of txpool tests. * Migrate transaction queue tests. * Nonce Cap * Nonce cap cache and tests. * Remove stale future transactions from the queue. * Optimize scoring and write some tests. * Simple penalization. * Clean up and support for different scoring algorithms. * Add CLI parameters for the new queue. * Remove banning queue. * Disable debug build. * Change per_sender limit to be 1% instead of 5% * Avoid cloning when propagating transactions. * Remove old todo. * Post-review fixes. * Fix miner options default. * Implement back ready transactions for light client. * Get rid of from_pending_block * Pass rejection reason. * Add more details to drop. * Rollback heap size of. * Avoid cloning hashes when propagating and include more details on rejection. * Fix tests. * Introduce nonces cache. * Remove uneccessary hashes allocation. * Lower the mem limit. * Re-enable parallel verification. * Add miner log. Don't check the type if not below min_gas_price. * Add more traces, fix disabling miner. * Fix creating pending blocks twice on AuRa authorities. * Fix tests. * re-use pending blocks in AuRa * Use reseal_min_period to prevent too frequent update_sealing. * Fix log to contain hash not sender. * Optimize local transactions. * Fix aura tests. * Update locks comments. * Get rid of unsafe Sync impl. * Review fixes. * Remove excessive matches. * Fix compilation errors. * Use new pool in private transactions. * Fix private-tx test. * Fix secret store tests. * Actually use gas_floor_target * Fix config tests. * Fix pool tests. * Address grumbles.
2018-04-13 17:34:27 +02:00
macros = { path = "../util/macros" }
pretty_assertions = "0.1"
transaction-pool = "2.0.1"
[features]
accounts = ["ethcore-accounts"]