-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 759 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 759 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
26
[package]
name = "rocket_prometheus"
description = """
Prometheus instrumentation for Rocket applications.
"""
version = "0.10.1"
authors = ["Ben Sully <ben.sully88@gmail.com>"]
repository = "https://github.com/sd2k/rocket_prometheus"
edition = "2018"
license = "MIT/Apache-2.0"
keywords = ["rocket", "prometheus", "instrumentation", "monitoring"]
readme = "README.md"
[dependencies]
prometheus = { version = "0.14", default-features = false }
rocket = "0.5.0"
[dev-dependencies]
once_cell = "1.2.0"
rocket = { version = "0.5.0", default-features = false, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["macros"] }
[badges]
maintenance = { status = "passively-maintained" }