2018-06-29 00:01:34 +00:00
|
|
|
[package]
|
2018-11-17 00:14:33 +00:00
|
|
|
name = "background-jobs"
|
2024-01-18 17:58:59 +00:00
|
|
|
description = "asynchronous background jobs implemented with pluggable backends and runtimes"
|
2024-02-05 05:39:23 +00:00
|
|
|
version = "0.18.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"
|
2024-01-18 18:31:21 +00:00
|
|
|
keywords = ["jobs", "actix", "tokio", "postgres", "sled"]
|
2021-10-21 21:31:29 +00:00
|
|
|
edition = "2021"
|
2018-06-29 00:01:34 +00:00
|
|
|
|
2024-01-18 17:58:59 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
|
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",
|
2024-01-13 21:57:37 +00:00
|
|
|
"jobs-tokio",
|
2022-07-02 18:42:17 +00:00
|
|
|
"examples/basic-example",
|
2024-02-05 03:44:49 +00:00
|
|
|
"examples/error-example",
|
2022-07-02 18:42:17 +00:00
|
|
|
"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",
|
2024-01-13 21:58:33 +00:00
|
|
|
"examples/tokio-example",
|
2018-11-05 02:13:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[features]
|
2024-01-13 21:58:33 +00:00
|
|
|
default = ["actix-rt", "metrics"]
|
|
|
|
actix-rt = ["dep:background-jobs-actix"]
|
|
|
|
metrics = ["dep:background-jobs-metrics"]
|
|
|
|
postgres = ["dep:background-jobs-postgres"]
|
|
|
|
sled = ["dep:background-jobs-sled"]
|
|
|
|
tokio = ["dep:background-jobs-tokio"]
|
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-02-05 05:39:23 +00:00
|
|
|
version = "0.18.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-02-05 05:39:23 +00:00
|
|
|
version = "0.18.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-02-05 05:39:23 +00:00
|
|
|
version = "0.18.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]
|
2024-02-05 05:39:23 +00:00
|
|
|
version = "0.18.0"
|
2024-01-10 05:16:35 +00:00
|
|
|
path = "jobs-postgres"
|
|
|
|
optional = true
|
2024-01-13 21:58:33 +00:00
|
|
|
|
|
|
|
[dependencies.background-jobs-sled]
|
2024-02-05 05:39:23 +00:00
|
|
|
version = "0.18.0"
|
2024-01-13 21:58:33 +00:00
|
|
|
path = "jobs-sled"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.background-jobs-tokio]
|
2024-02-05 05:39:23 +00:00
|
|
|
version = "0.18.0"
|
2024-01-13 21:58:33 +00:00
|
|
|
path = "jobs-tokio"
|
|
|
|
optional = true
|