2016-12-05 16:56:21 +01:00
|
|
|
[package]
|
2017-03-07 19:48:07 +01:00
|
|
|
description = "Parity Light Client Implementation"
|
2016-12-11 19:43:58 +01:00
|
|
|
homepage = "http://parity.io"
|
2016-12-05 16:56:21 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "ethcore-light"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-12-05 16:56:21 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2016-12-08 19:52:48 +01:00
|
|
|
ethcore = { path = ".."}
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-transaction = { path = "../transaction" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
memorydb = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
patricia-trie = { git = "https://github.com/paritytech/parity-common" }
|
2018-07-02 18:50:05 +02:00
|
|
|
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
|
2016-12-05 16:56:21 +01:00
|
|
|
ethcore-network = { path = "../../util/network" }
|
|
|
|
ethcore-io = { path = "../../util/io" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
hashdb = { git = "https://github.com/paritytech/parity-common" }
|
2017-08-30 16:04:47 +02:00
|
|
|
heapsize = "0.4"
|
2017-08-01 12:37:57 +02:00
|
|
|
vm = { path = "../vm" }
|
2018-08-09 09:51:48 +02:00
|
|
|
fastmap = { path = "../../util/fastmap" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
2017-08-20 06:01:46 +02:00
|
|
|
rlp_derive = { path = "../../util/rlp_derive" }
|
2017-05-24 12:31:33 +02:00
|
|
|
smallvec = "0.4"
|
2016-12-27 16:43:28 +01:00
|
|
|
futures = "0.1"
|
2018-02-09 09:32:06 +01:00
|
|
|
rand = "0.4"
|
2017-02-06 17:21:35 +01:00
|
|
|
itertools = "0.5"
|
2017-05-23 12:31:09 +02:00
|
|
|
bincode = "0.8.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2018-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
2017-02-17 17:08:46 +01:00
|
|
|
stats = { path = "../../util/stats" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
2018-07-02 18:50:05 +02:00
|
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
triehash-ethereum = { version = "0.2", path = "../../util/triehash-ethereum" }
|
|
|
|
kvdb = { git = "https://github.com/paritytech/parity-common" }
|
2017-10-16 06:05:54 +02:00
|
|
|
memory-cache = { path = "../../util/memory_cache" }
|
2018-06-25 14:20:44 +02:00
|
|
|
error-chain = { version = "0.12", default-features = false }
|
2016-12-08 13:44:17 +01:00
|
|
|
|
2017-11-14 17:47:41 +01:00
|
|
|
[dev-dependencies]
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb-memorydb = { git = "https://github.com/paritytech/parity-common" }
|
2017-11-14 17:47:41 +01:00
|
|
|
tempdir = "0.3"
|
|
|
|
|
2016-12-08 13:44:17 +01:00
|
|
|
[features]
|
2016-12-08 16:46:58 +01:00
|
|
|
default = []
|