-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (26 loc) · 839 Bytes
/
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
[package]
name = "nodetop"
version = "0.3.0"
edition = "2021"
license = "apache-2.0"
description = "A utility to obtain statistics from node_exporter and YugabyteDB in prometheus format in order to visualize them on the CLI and/or in a graph"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.19"
prometheus-parse = "0.2.2"
port_scanner = "0.1.5"
rayon = "1.5.1"
reqwest = { version = "0.11.10", features = ["blocking"] }
structopt = "0.3.26"
ctrlc = "3.2.2"
plotters = "0.3.1"
cmake = "=0.1.45"
itertools = "0.10.3"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/nodetop", dest = "/usr/local/bin/nodetop", mode="0755" }
]
release = "1.el7"
[package.metadata.generate-rpm.requires]
open-sans-fonts = ">= 1.10"
fontconfig = ">= 2.13"