ca6edcaf71
* fetch: replace futures-timer with tokio-timer Currently the coverage build fails because `futures-timer` fails to compile with `-C link-dead-code`. This issue has been reported to `futures-timer` (https://github.com/alexcrichton/futures-timer/issues/2) but has remained unsolved for months. It should be fixed by rustc eventually (https://github.com/rust-lang/rust/issues/45629). * ci: only include local paths in coverage * ci: exclude target from coverage
21 lines
358 B
TOML
21 lines
358 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"
|
|
hyper = "0.11"
|
|
hyper-rustls = "0.11"
|
|
log = "0.4"
|
|
tokio-core = "0.1"
|
|
tokio-timer = "0.1"
|
|
url = "1"
|
|
bytes = "0.4"
|
|
|
|
[features]
|
|
default = []
|