-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 794 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 794 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
27
[package]
name = "future-metrics"
version = "0.1.0"
edition = "2021"
authors = ["Ivan Reshetnikov"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/heilhead/future-metrics.git"
homepage = "https://github.com/heilhead/future-metrics.git"
description = "Instrument futures with execution metrics"
[dependencies]
pin-project = "1"
[dev-dependencies]
tokio = { version = "1", default-features = false, features = [
"rt-multi-thread",
"time",
"macros",
] }
opentelemetry = { version = "0.27", features = ["metrics"] }
opentelemetry_sdk = { version = "0.27", features = ["metrics", "rt-tokio"] }
opentelemetry-prometheus = "0.27"
prometheus = { version = "0.13", default-features = false }
rand = "0.8"
metrics = "0.24"
metrics-exporter-prometheus = "0.16"