-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
63 lines (55 loc) · 1.42 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
61
62
63
[package]
authors = ["Ernestas Poskus <[email protected]>"]
autobins = false
description = "Proper Elasticsearch exporter\n"
documentation = "https://docs.rs/elasticsearch_exporter"
edition = "2021"
homepage = "https://github.com/vinted/elasticsearch-exporter-rs"
license = "MIT"
name = "elasticsearch_exporter"
repository = "https://github.com/vinted/elasticsearch-exporter-rs"
version = "0.34.0"
[[bin]]
name = "elasticsearch_exporter"
[dependencies]
byte-unit = "5.1.6"
fnv = "1.0.7"
humantime = "2.1.0"
lazy_static = "1.5.0"
log = "0.4.22"
oorandom = "11.1.4"
pretty_env_logger = "0.5.0"
serde = "1.0.214"
serde_derive = "1.0.147"
serde_json = "1.0.132"
serde_qs = "0.13.0"
url = "2.5.3"
[dependencies.chrono]
default-features = false
features = ["clock"]
version = "0.4.38"
[dependencies.clap]
default-features = false
features = ["suggestions", "color", "derive", "std", "cargo"]
version = "4.5.20"
[dependencies.elasticsearch]
default-features = false
features = ["native-tls"]
version = "8.15.0-alpha.1"
[dependencies.hyper]
default-features = false
features = ["runtime", "tcp", "server", "http1", "http2"]
version = "0.14.30"
[dependencies.prometheus]
default-features = false
features = ["process", "protobuf"]
version = "0.13.4"
[dependencies.tokio]
default-features = false
features = ["rt-multi-thread", "signal", "sync", "macros", "time"]
version = "1.38.1"
[profile]
[profile.release]
codegen-units = 1
lto = true
opt-level = 3