aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 5c0c6669438788b14bac7f3bda81030cc7fb2f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "webget"
version = "0.1.0"
authors = ["Melody Horn / boringcactus <melody@boringcactus.com>"]
edition = "2018"
description = "a wget-like file downloader"
readme = "README.md"
repository = "https://code.boringcactus.com/webget/"
license = "LicenseRef-ACSL"
license-file = "LICENSE"
keywords = ["download", "wget"]
categories = ["command-line-utilities"]

[dependencies]
anyhow = "1"
futures = "0.3.13"
hyper = { version = "0.14.5", features = ["client", "http1", "http2", "runtime", "stream"] }
hyper-rustls = "0.22.1"
mime2ext = "0.1.2"
tokio = { version = "1", features = ["full"] }
structopt = "0.3.21"