-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (26 loc) · 1.01 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
[package]
name = "tokio-prometheus-metered-channel"
version = "0.1.0"
edition = "2021"
description = "Metered tokio channels with Prometheus metrics integration"
authors = ["Francois Garillot <francois@garillot.net>"]
license = "Apache-2.0"
repository = "https://github.com/huitseeker/tokio-prometheus-metered-channel"
documentation = "https://docs.rs/tokio-prometheus-metered-channel"
readme = "README.md"
keywords = ["tokio", "prometheus", "metrics", "channel", "async"]
categories = ["asynchronous", "development-tools", "concurrency"]
rust-version = "1.65.0"
[dependencies]
futures = { version = "0.3.31", features = ["std"] }
prometheus = { version = "0.13.4", features = ["process"] }
tokio = { version = "1.36.0", features = ["full", "rt", "rt-multi-thread", "sync", "time", "macros"] }
async-trait = "0.1"
pin-project = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-futures = "0.2"
[package.metadata.release]
sign-tag = true
push-remote = "origin"
allow-branch = ["main"]