2018-06-29 00:01:34 +00:00
|
|
|
[package]
|
2018-11-17 00:14:33 +00:00
|
|
|
name = "background-jobs"
|
2020-04-21 00:42:39 +00:00
|
|
|
description = "Background Jobs implemented with actix and futures"
|
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-06-29 00:01:34 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2022-01-17 23:45:24 +00:00
|
|
|
repository = "https://git.asonix.dog/asonix/background-jobs"
|
2018-11-18 01:51:53 +00:00
|
|
|
readme = "README.md"
|
2020-04-21 00:42:39 +00:00
|
|
|
keywords = ["jobs", "processor", "actix"]
|
2021-10-21 21:31:29 +00:00
|
|
|
edition = "2021"
|
2018-06-29 00:01:34 +00:00
|
|
|
|
2018-11-05 02:13:06 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2022-07-02 18:42:17 +00:00
|
|
|
"jobs-actix",
|
|
|
|
"jobs-core",
|
2023-03-23 03:25:19 +00:00
|
|
|
"jobs-metrics",
|
2024-01-10 05:16:35 +00:00
|
|
|
"jobs-postgres",
|
2022-07-02 18:42:17 +00:00
|
|
|
"jobs-sled",
|
|
|
|
"examples/basic-example",
|
|
|
|
"examples/long-example",
|
|
|
|
"examples/managed-example",
|
2023-03-23 03:15:38 +00:00
|
|
|
"examples/metrics-example",
|
2022-07-02 18:42:17 +00:00
|
|
|
"examples/panic-example",
|
2024-01-10 05:16:35 +00:00
|
|
|
"examples/postgres-example",
|
2018-11-05 02:13:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[features]
|
2023-03-23 03:25:19 +00:00
|
|
|
default = ["background-jobs-actix", "background-jobs-metrics"]
|
2022-07-02 18:42:17 +00:00
|
|
|
completion-logging = [
|
|
|
|
"background-jobs-core/completion-logging",
|
|
|
|
"error-logging",
|
|
|
|
]
|
2021-09-16 22:50:32 +00:00
|
|
|
error-logging = ["background-jobs-core/error-logging"]
|
2018-11-05 02:13:06 +00:00
|
|
|
|
2018-11-17 01:10:31 +00:00
|
|
|
[dependencies.background-jobs-core]
|
2024-01-08 22:34:22 +00:00
|
|
|
version = "0.17.0"
|
2018-11-05 02:13:06 +00:00
|
|
|
path = "jobs-core"
|
|
|
|
|
2018-12-16 18:43:44 +00:00
|
|
|
[dependencies.background-jobs-actix]
|
2024-01-08 22:34:22 +00:00
|
|
|
version = "0.17.0"
|
2018-12-16 18:43:44 +00:00
|
|
|
path = "jobs-actix"
|
|
|
|
optional = true
|
2023-03-23 03:25:19 +00:00
|
|
|
|
|
|
|
[dependencies.background-jobs-metrics]
|
2024-01-08 22:34:22 +00:00
|
|
|
version = "0.17.0"
|
2023-03-23 03:25:19 +00:00
|
|
|
path = "jobs-metrics"
|
|
|
|
optional = true
|
2024-01-10 05:16:35 +00:00
|
|
|
|
|
|
|
[dependencies.background-jobs-postgres]
|
|
|
|
version = "0.17.0"
|
|
|
|
path = "jobs-postgres"
|
|
|
|
optional = true
|