2018-11-05 02:13:06 +00:00
|
|
|
[package]
|
2018-11-17 01:10:31 +00:00
|
|
|
name = "background-jobs-core"
|
2019-09-22 17:12:08 +00:00
|
|
|
description = "Core types for implementing an asynchronous jobs processor"
|
2024-01-08 22:34:22 +00:00
|
|
|
version = "0.17.0"
|
2021-09-21 15:17:24 +00:00
|
|
|
license = "AGPL-3.0"
|
2018-11-05 02:13:06 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2021-09-21 15:17:24 +00:00
|
|
|
repository = "https://git.asonix.dog/asonix/background-jobs"
|
2018-11-18 01:46:42 +00:00
|
|
|
keywords = ["jobs", "processor"]
|
2019-09-15 20:51:33 +00:00
|
|
|
readme = "../README.md"
|
2021-10-21 21:31:29 +00:00
|
|
|
edition = "2021"
|
2018-11-05 02:13:06 +00:00
|
|
|
|
2020-03-30 15:36:49 +00:00
|
|
|
[features]
|
2021-10-11 23:49:39 +00:00
|
|
|
default = ["error-logging"]
|
2021-09-16 22:50:32 +00:00
|
|
|
completion-logging = []
|
|
|
|
error-logging = []
|
2020-03-30 15:36:49 +00:00
|
|
|
|
2018-11-05 02:13:06 +00:00
|
|
|
[dependencies]
|
2020-03-21 02:31:03 +00:00
|
|
|
anyhow = "1.0"
|
|
|
|
async-trait = "0.1.24"
|
2024-01-08 00:52:09 +00:00
|
|
|
event-listener = "4"
|
2024-01-07 18:30:04 +00:00
|
|
|
metrics = "0.22.0"
|
2022-01-17 23:45:24 +00:00
|
|
|
time = { version = "0.3", features = ["serde-human-readable"] }
|
2021-09-16 22:50:32 +00:00
|
|
|
tracing = "0.1"
|
2020-03-21 02:31:03 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-11-05 02:13:06 +00:00
|
|
|
serde_json = "1.0"
|
2020-03-21 02:31:03 +00:00
|
|
|
thiserror = "1.0"
|
2024-01-08 00:52:09 +00:00
|
|
|
uuid = { version = "1.6", features = ["serde", "v7"] }
|