-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
53 lines (51 loc) · 1.37 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
[package]
authors = ["Alex Chi <[email protected]>"]
edition = "2018"
name = "mirror-clone"
version = "0.2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
bytes = "1.0"
chrono = "0.4"
console = "0.14"
filetime = "0.2"
flate2 = "1.0"
futures-core = "0.3"
futures-util = "0.3"
google-bigquery2 = "5.0"
html-escape = "0.2"
hyper-proxy = { version = "0.9", default-features = false, features = ["rustls"] }
indicatif = "0.15"
iter-set = "2.0"
itertools = "0.10"
lazy_static = "1.4"
md-5 = "0.9"
nom = "7.1"
once_cell = "1.18"
parse_link_header = "0.2"
rand = "0.8"
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-native-roots", "stream", "json"] }
rusoto_core = { version = "0.48", default-features = false, features = ["rustls"] }
rusoto_s3 = { version = "0.48", default-features = false, features = ["rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
sha2 = "0.9"
slog = "2.5"
slog-async = "2.5"
slog-envlogger = "2.2"
slog-term = "2.6"
structopt = "0.3"
thiserror = "1.0"
tokio = { version = "1.0", features = ["full"] }
tokio-io-compat = "0.1"
tokio-util = { version = "0.7", features = ["io-util", "codec"] }
url = "2.2"
urlencoding = "2.1"
walkdir = "2"
zip = "0.5"
[dev-dependencies]
insta = "1.30"
rstest = "0.17"