d7bbc5cc3f
* Moving file fetching to separate crate. * ethcore_hashContent * Tests running on mocked fetch. * Limiting size of downloadable assets
19 lines
431 B
TOML
19 lines
431 B
TOML
[package]
|
|
description = "HTTP/HTTPS fetching library"
|
|
homepage = "http://ethcore.io"
|
|
license = "GPL-3.0"
|
|
name = "fetch"
|
|
version = "0.1.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
rand = "0.3"
|
|
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
|
|
https-fetch = { path = "../https-fetch" }
|
|
clippy = { version = "0.0.90", optional = true}
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["clippy"]
|