-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
36 lines (34 loc) · 904 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
[package]
name = "crater-at-home"
version = "0.1.0"
edition = "2021"
default-run = "crater-at-home"
[dependencies]
clap = { version = "4", features = ["derive"] }
env_logger = "0.10"
log = "0.4.17"
serde = { version = "1.0.140", features = ["derive"] }
ansi-to-html = { path = "ansi-to-html" }
color-eyre = "0.6.2"
semver = "1.0.12"
tar = "0.4.38"
flate2 = "1.0.24"
ureq = "2.5.0"
once_cell = "1.13.0"
csv = "1.1.6"
fxhash = "0.2.1"
regex = "1.6.0"
uuid = { version = "1.1.2", features = ["v4"] }
num_cpus = "1.13.1"
tokio = { version = "1.21.2", features = ["full"] }
futures-util = "0.3.24"
aws-sdk-s3 = "0.24"
aws-smithy-types-convert = { version = "0.54", features = ["convert-time"] }
aws-config = "0.54"
serde_json = "1.0.96"
xz2 = "0.1.7"
backoff = { version = "0.4.0", features = ["futures", "tokio"] }
time = { version = "0.3", features = ["std"] }
[profile.release]
panic = "abort"
debug = 1