2016-12-11 19:15:58 +01:00
|
|
|
[package]
|
|
|
|
description = "Fetching hash-addressed content."
|
2016-12-11 19:43:58 +01:00
|
|
|
homepage = "http://parity.io"
|
2016-12-11 19:15:58 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "parity-hash-fetch"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2016-12-11 19:15:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
2016-12-22 18:26:39 +01:00
|
|
|
futures = "0.1"
|
2018-03-14 13:40:54 +01:00
|
|
|
futures-cpupool = "0.1"
|
2016-12-22 18:26:39 +01:00
|
|
|
log = "0.3"
|
2017-10-05 12:35:01 +02:00
|
|
|
mime = "0.3"
|
|
|
|
mime_guess = "2.0.0-alpha.2"
|
2018-02-09 09:32:06 +01:00
|
|
|
rand = "0.4"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
2016-12-11 19:15:58 +01:00
|
|
|
fetch = { path = "../util/fetch" }
|
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-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
2016-12-22 18:26:39 +01:00
|
|
|
parity-reactor = { path = "../util/reactor" }
|
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-03-12 21:46:27 +01:00
|
|
|
registrar = { path = "../registrar" }
|
2017-10-05 12:35:01 +02:00
|
|
|
|
2018-02-09 09:32:06 +01:00
|
|
|
ethabi = "5.1"
|
|
|
|
ethabi-derive = "5.0"
|
|
|
|
ethabi-contract = "5.0"
|
|
|
|
|
2017-10-05 12:35:01 +02:00
|
|
|
[dev-dependencies]
|
2018-03-14 13:40:54 +01:00
|
|
|
hyper = "0.11"
|
2018-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
2018-04-11 11:59:04 +02:00
|
|
|
fake-fetch = { path = "../util/fake-fetch" }
|