forked from rust-lang/rustc-perf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (56 loc) · 1.59 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
54
55
56
57
58
59
60
[package]
authors = ["Mark-Simulacrum <mark.simulacrum@gmail.com>", "Nicholas Cameron <ncameron@mozilla.com>", "The rustc-perf contributors"]
name = "site"
version = "0.1.0"
edition = "2021"
[dependencies]
env_logger = "0.10"
anyhow = "1"
futures = "0.3"
tokio = { version = "1.26", features = ["macros", "time"] }
log = "0.4"
serde = { version = "1", features = ["rc"] }
serde_derive = "1"
serde_json = "1"
hyper = { version = "0.14", features = ["server", "stream"] }
headers = "0.3"
http = "0.2"
chrono = "0.4"
rmp-serde = "1.1"
brotli = "3.3.3"
semver = "1.0"
ring = "0.16.10"
hex = "0.4.2"
regex = "1"
lazy_static = "1"
reqwest = { version = "0.11", features = ["json", "blocking"] }
toml = "0.7"
rust_team_data = { git = "https://github.com/rust-lang/team" }
parking_lot = "0.12"
snap = "1"
itertools = "0.10"
hashbrown = { version = "0.14", features = ["serde"] }
arc-swap = "1.3"
database = { path = "../database" }
bytes = "1.0"
url = "2"
analyzeme = "12.0.0"
inferno = { version = "0.11", default-features = false }
mime = "0.3"
# prometheus currently uses plain text, so disable protobuf
prometheus = { version = "0.13", default-features = false }
uuid = { version = "1.3.0", features = ["v4"] }
tera = { version = "1.19", default-features = false }
rust-embed = { version = "6.6.0", features = ["include-exclude", "interpolate-folder-path"] }
humansize = "2"
lru = "0.12.0"
ruzstd = "0.7.0"
[target.'cfg(unix)'.dependencies]
jemallocator = "0.5"
jemalloc-ctl = "0.5"
[dependencies.collector]
path = "../collector"
[build-dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.7"