forked from dialtone/metrics-exporter-dogstatsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (26 loc) · 1.08 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
[package]
name = "metrics-exporter-dogstatsd"
version = "0.8.0"
authors = ["Valentino Volonghi <[email protected]>"]
edition = "2021"
rust-version="1.61.0"
license = "MIT"
description = "A metrics-compatible exporter for sending metrics to Statsd/Dogstatsd."
homepage = "https://github.com/dialtone/metrics-exporter-dogstatsd"
repository = "https://github.com/dialtone/metrics-exporter-dogstatsd"
documentation = "https://docs.rs/metrics-exporter-dogstatsd"
readme = "README.md"
categories = ["development-tools::debugging"]
keywords = ["metrics", "telemetry", "statsd"]
[dependencies]
metrics = "0.21"
metrics-util = { version = "0.15", default-features = false, features = ["recency", "registry", "summary"] }
thiserror = { version = "1", default-features = false }
quanta = { version = "0.11.0", default-features = false }
indexmap = { version = "1", default-features = false }
tokio = { version = "1", features = ["rt", "net", "time"] }
tokio-util = { version = "0.7.8" }
tracing = { version = "0.1.26" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]