-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 1.09 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
[package]
name = "metrics-prometheus"
version = "0.9.0"
edition = "2021"
rust-version = "1.81"
description = "`prometheus` backend for `metrics` crate."
authors = ["Instrumentisto Team <[email protected]>"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/metrics-prometheus"
homepage = "https://github.com/instrumentisto/metrics-prometheus-rs"
repository = "https://github.com/instrumentisto/metrics-prometheus-rs"
readme = "README.md"
keywords = ["metrics", "prometheus"]
categories = ["development-tools::debugging"]
include = ["/src/", "/CHANGELOG.md", "/LICENSE-APACHE", "/LICENSE-MIT", "/README.md"]
[dependencies]
arc-swap = "1.5"
metrics = { version = "0.24", default-features = false }
metrics-util = { version = "0.19", features = ["registry"], default-features = false }
prometheus = { version = "0.13", default-features = false }
sealed = "0.6"
smallvec = "1.10"
# Not realy used, for surviving MSRV check only.
# TODO: Fix in `prometheus` crate.
thiserror = "1.0.2"
[dev-dependencies]
metrics-util = { version = "0.19", features = ["layer-filter"], default-features = false }