forked from epwalsh/rust-cached-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 901 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "cached-path"
version = "0.1.1"
authors = ["epwalsh <[email protected]>"]
edition = "2018"
keywords = ["http", "caching"]
categories = ["caching"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/epwalsh/rust-cached-path"
homepage = "https://github.com/epwalsh/rust-cached-path"
description = "Download and cache HTTP resources."
[lib]
name = "cached_path"
path = "src/lib.rs"
[[bin]]
name = "cached-path"
path = "src/main.rs"
doc = false
[dependencies]
reqwest = "0.10.0"
sha2 = "0.8"
tempfile = "3.1"
structopt = "0.3"
log = "0.4"
env_logger = "0.7"
tokio = { version = "0.2", features = ["macros", "io-util", "fs", "sync", "time"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4"
failure = "0.1"
failure_derive = "0.1"
exitfailure = "0.5.1"
rand = "0.7"
glob = "0.3"
[dev-dependencies]
httpmock = "0.3"