-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 1.68 KB
/
Cargo.toml
File metadata and controls
60 lines (54 loc) · 1.68 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
[package]
authors = ["The Rust Compiler Team"]
name = "collector"
version = "0.1.0"
edition = "2021"
description = "Collects Rust performance data"
rust-version = { workspace = true }
[dependencies]
anyhow = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
clap = { workspace = true, features = ["derive", "env"] }
env_logger = { workspace = true }
hashbrown = { workspace = true }
log = { workspace = true }
reqwest = { workspace = true, features = ["blocking", "json"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt", "process", "fs"] }
cfg-if = "1"
thiserror = "2"
tempfile = "3"
libc = "0.2"
semver = "1.0"
xz2 = "0.1.3"
tar = "0.4"
futures = "0.3.5"
jobserver = "0.1.33"
snap = "1"
walkdir = "2"
flate2 = { version = "1.0.22", features = ["rust_backend"] }
rayon = "1"
cargo_metadata = "0.19"
thousands = "0.2.0"
rustc-demangle = { version = "0.1", features = ["std"] }
similar = "2.2"
console = "0.15"
object = "0.36.0"
tabled = { version = "0.20", default-features = false, features = ["derive", "ansi"] }
humansize = "2.1.3"
regex = "1.7.1"
analyzeme = "12.0.0"
ratatui = "0.29"
object_store = { version = "0.13", features = ["aws"], optional = true }
benchlib = { path = "benchlib" }
database = { path = "../database" }
[target.'cfg(windows)'.dependencies]
miow = "0.3"
windows-sys = { version = "0.48.0", features = ["Win32_Foundation"] }
[features]
# Enable more precise Cachegrind profiles for runtime benchmarks.
# Requires a recent Valgrind to be installed.
# Pass DEP_VALGRIND=<path-to-valgrind>/include environment variable when building.
precise-cachegrind = []
s3-sdk = ["dep:object_store"]