2024-01-13 21:36:49 +00:00
|
|
|
[package]
|
|
|
|
name = "background-jobs-tokio"
|
2024-01-18 17:58:59 +00:00
|
|
|
description = "in-process jobs processor based on Tokio"
|
2024-07-09 21:04:59 +00:00
|
|
|
version = "0.19.0"
|
2024-01-18 17:58:59 +00:00
|
|
|
license = "AGPL-3.0"
|
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
|
|
repository = "https://git.asonix.dog/asonix/background-jobs"
|
|
|
|
keywords = ["jobs", "processor", "tokio"]
|
|
|
|
readme = "../README.md"
|
2024-01-13 21:36:49 +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.77"
|
2024-07-09 21:04:59 +00:00
|
|
|
background-jobs-core = { version = "0.19.0", path = "../jobs-core" }
|
|
|
|
metrics = "0.23.0"
|
2024-01-13 21:36:49 +00:00
|
|
|
serde = "1.0.195"
|
|
|
|
serde_json = "1.0.111"
|
|
|
|
tokio = { version = "1.35.1", features = ["macros", "rt", "sync", "time", "tracing"] }
|
|
|
|
tracing = "0.1.40"
|
|
|
|
uuid = { version = "1.6.1", features = ["v7", "serde"] }
|