forked from fritshoogland-yugabyte/yb_stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (38 loc) · 1.16 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
[package]
name = "yb_stats"
version = "0.9.7"
edition = "2021"
license = "apache-2.0"
description = "A utility to read all available metadata that should be present in a standard YugabyteDB cluster"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1.0.152"
serde_json = "1.0.93"
serde_derive = "1.0.152"
reqwest = { version = "0.11.14", features = ["blocking"] }
itertools = "0.10.5"
regex = "1.7.1"
substring = "1.4.5"
csv = "1.1.6"
chrono = { version = "0.4.23", features = ["serde"] }
rayon = "1.6.1"
scraper = "0.14.0"
dotenv = "0.15.0"
prometheus-parse = "0.2.3"
log = "0.4.17"
env_logger = "0.10.0"
colored = "2.0.0"
clap = { version = "4.1.6", features = ["derive"] }
tokio = { version = "1.25.0", features = ["full"] }
anyhow = "1.0.69"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/yb_stats", dest = "/usr/local/bin/yb_stats", mode="0755" }
]
release = "1.el8"
[package.metadata.deb]
copyright = "2021, Frits Hoogland <fhoogland@yugabyte.com>"
maintainer = "Frits Hoogland <fhoogland@yugabyte.com>"
assets = [
["target/release/yb_stats", "/usr/local/bin/", "755"]
]