[package]
edition = "2021"
name = "graphile_worker_lifecycle_hooks"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lifecycle hooks for graphile_worker, a high performance Rust/PostgreSQL job queue"
homepage = "https://docs.rs/graphile_worker"
documentation = "https://docs.rs/graphile_worker"
readme = "README.md"
keywords = []
categories = []
license-file = "LICENSE.md"
repository = "https://github.com/leo91000/graphile_worker_rs"
[features]
default = [
"runtime-tokio",
"driver-sqlx",
]
driver-sqlx = [
"graphile_worker_database/driver-sqlx",
"sqlx",
]
runtime-async-std = [
"graphile_worker_database/runtime-async-std",
"sqlx?/runtime-async-std",
"graphile_worker_job/runtime-async-std",
]
runtime-tokio = [
"graphile_worker_database/runtime-tokio",
"sqlx?/runtime-tokio",
"graphile_worker_job/runtime-tokio",
]
[lib]
name = "graphile_worker_lifecycle_hooks"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4.45"
features = ["serde"]
[dependencies.futures]
version = "0.3.32"
[dependencies.graphile_worker_crontab_types]
version = "0.5.16"
[dependencies.graphile_worker_database]
version = "0.1.4"
default-features = false
[dependencies.graphile_worker_extensions]
version = "0.1.8"
[dependencies.graphile_worker_job]
version = "0.2.0"
default-features = false
[dependencies.graphile_worker_job_spec]
version = "0.1.4"
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sqlx]
version = "0.9.0"
features = [
"chrono",
"postgres",
"json",
"macros",
]
optional = true
default-features = false