-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (71 loc) · 1.79 KB
/
Cargo.toml
File metadata and controls
75 lines (71 loc) · 1.79 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "crater"
version = "0.1.0"
edition = "2021"
build = "build.rs"
default-run = "crater"
[profile.dev]
opt-level = 0
[profile.release]
strip = false
[dependencies]
anyhow = "1.0.95"
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.7"
base64 = "0.22.1"
bytes = "1"
cargo_metadata = "0.23.1"
cargo-util-schemas = "0.12.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
smol_str = "0.3.2"
crates-index = "3.11.0"
crossbeam-channel = "0.5"
csv = "1.0.2"
ctrlc = "3.1.3"
docsrs-metadata = { git = "https://github.com/rust-lang/docs.rs/" }
dotenv = "0.15"
env_logger = "0.11.8"
flate2 = "1"
hmac = "0.12"
indexmap = { version = "2.0.2", features = ["serde"] }
lazy_static = "1.0"
log = "0.4.6"
mime = "0.3.1"
minifier = { version = "0.3", features = ["html"] }
nix = { version = "0.31.2", features = ["mman", "resource", "fs"] }
percent-encoding = "2.1.0"
prometheus = "0.13.3"
r2d2 = "0.8.2"
rand = "0.10"
rayon = "1.10"
regex = "1.0"
remove_dir_all = "0.7"
reqwest = { version = "0.13", features = ["blocking", "json", "gzip"] }
jiff = { version = "0.2.15", features = ["serde"] }
rusqlite = { version = "0.39", features = ["chrono", "functions", "bundled"] }
rust_team_data = { git = "https://github.com/rust-lang/team" }
rustwide = { version = "0.22.1", features = [
"unstable",
"unstable-toolchain-ci",
] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_regex = "1.1.0"
sha-1 = "0.10"
tar = "0.4.36"
tempfile = "3.0.0"
tera = "1.19.1"
thiserror = "2"
tokio = "1.24"
toml = "1.0.6"
url = { version = "2", features = ["serde"] }
walkdir = "2"
warp = { version = "0.4", features = ["server"] }
zstd = "0.13.0"
rawzip = "0.4.0"
[dev-dependencies]
assert_cmd = "2.0.4"
difference = "2.0.0"
predicates = "3.0.4"