-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 805 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (23 loc) · 805 Bytes
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.10.0"
authors = ["Norberto Lopes <nlopes.ml@gmail.com>"]
edition = "2024"
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.14", default-features = false }
regex = "^1.4"
log = "0.4"
[features]
process = ["prometheus/process"]