-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 1.12 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
[package]
name = "prometheus-fastd-exporter"
version = "0.0.1"
authors = ["Paul Maruhn <[email protected]>"]
edition = "2018"
description = "Prometheus exporter for fastd."
homepage = "https://paul.pages.chaotikum.org/prometheus-fastd-exporter/"
documentation = "https://paul.pages.chaotikum.org/prometheus-fastd-exporter/"
repository = "https://git.chaotikum.org/paul/prometheus-fastd-exporter"
[dependencies]
clap = "2.33.0"
prometheus = "0.10.0"
serde_json = "1.0.40"
serde = {version = "1.0.99", features = ["derive"]}
tiny_http = "0.8.2"
log = "0.4.8"
pretty_env_logger = "0.3.1"
[package.metadata.deb]
license-file = ["LICENSE", "0"]
extended-description = "Prometheus exporter for fastd."
maintainer = "Paul Maruhn <[email protected]>"
copyright = "Paul Maruhn <[email protected]>"
depends = "$auto"
section = "utility"
priority = "optional"
conf-files = ["/etc/default/prometheus-fastd-exporter"]
assets = [
["target/release/prometheus-fastd-exporter", "usr/bin/", "755"],
["assets/prometheus-fastd-exporter.service", "lib/systemd/system/", "644"],
["assets/prometheus-fastd-exporter", "etc/default/", "644"],
]