background-jobs/jobs-metrics/Cargo.toml

21 lines
675 B
TOML
Raw Normal View History

2023-03-23 03:25:19 +00:00
[package]
name = "background-jobs-metrics"
2024-01-18 17:58:59 +00:00
description = "Metrics subscriber for accessing metrics produced by background jobs"
2024-02-05 05:39:23 +00:00
version = "0.18.0"
2023-03-23 03:25:19 +00:00
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/background-jobs"
2023-03-23 03:27:05 +00:00
readme = "../README.md"
2024-01-18 17:58:59 +00:00
keywords = ["jobs", "processor", "metrics"]
2023-03-23 03:25:19 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.24"
2024-02-05 05:39:23 +00:00
background-jobs-core = { version = "0.18.0", path = "../jobs-core" }
2024-01-07 18:30:04 +00:00
metrics = "0.22.0"
metrics-util = "0.16.0"
tracing = "0.1"
uuid = { version = "1.6", features = ["serde", "v7"] }