-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Cargo.toml
25 lines (23 loc) · 804 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
[package]
name = "actix-web-prom"
version = "0.9.0"
authors = ["Norberto Lopes <[email protected]>"]
edition = "2021"
description = "Actix Web middleware to expose Prometheus metrics"
documentation = "https://docs.rs/actix-web-prom"
repository = "https://github.com/nlopes/actix-web-prom.git"
keywords = ["actix", "actix-web", "middleware", "prometheus", "web"]
categories = ["web-programming"]
license = "MIT"
readme = "README.md"
exclude = [".gitignore", ".github/", "README.tpl", "examples/"]
[dependencies]
strfmt = { version = "0.2.4" }
actix-web = { version = "4.0", default-features = false, features = ["macros"] }
futures-core = "0.3"
pin-project-lite = "0.2"
prometheus = { version = "0.13", default-features = false }
regex = "^1.4"
log = "0.4"
[features]
process = ["prometheus/process"]