f0387c33c6
* Dapps web Conflicts: dapps/src/apps/fetcher.rs dapps/src/handlers/fetch.rs * Rewriting fetch * Parity-wide fetch service * Obey the limits and support cancellation. * Removing temporary files. * Actually use Fetch for dapps * Re-implementing file fetching to avoid temporary files. * Serde to 0.8.19 * Fixing content & dapps fetch
20 lines
376 B
TOML
20 lines
376 B
TOML
[package]
|
|
description = "HTTP/HTTPS fetching library"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "fetch"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
futures = "0.1"
|
|
futures-cpupool = "0.1"
|
|
log = "0.3"
|
|
reqwest = "0.2"
|
|
mime = "0.2"
|
|
clippy = { version = "0.0.90", optional = true}
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy"]
|