-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (36 loc) · 982 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
[package]
name = "mirror-cache"
version = "0.1.0"
edition = "2018"
authors = ["SeanChao <seanchao0804@gmail.com>"]
repository = "https://github.com/SeanChao/mirror-cache"
description = "A customizable reverse proxy with cache"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
bytefmt = "0.1"
bytes = "1.0"
chrono = "0.4"
clap = "2"
config = "0.11"
futures = "0.3"
log = "0.4"
lazy_static = "1"
metrics = "0.17"
metrics-exporter-prometheus = "0.6"
metrics-util = "0.10"
notify = "5.0.0-pre.12"
pretty_env_logger = "0.4"
redis = { version = "0.21", features = ["aio", "tokio-comp"] }
regex = "1.5"
reqwest = { version = "0.11", features = ["stream"] }
rusoto_core = "0.47.0"
rusoto_s3 = "0.47.0"
thiserror = "1.0"
tokio = { version = "1.11", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec"] }
serde_derive = "^1.0"
serde = "^1.0"
sled = "0.34"
warp = "0.3"