10b0898bdf
- Move Updater into its own crate. - Change ethcore -> parity in authors, homepages and licenses.
19 lines
442 B
TOML
19 lines
442 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]
|
|
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"]
|