[package]
edition = "2021"
name = "graphile_worker_ctx"
version = "0.5.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Worker Context package for graphile_worker, a high performance Rust/PostgreSQL job queue"
homepage = "https://docs.rs/graphile_worker_crontab_types"
documentation = "https://docs.rs/graphile_worker_crontab_types"
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",
"graphile_worker_task_details/runtime-async-std",
]
runtime-tokio = [
"graphile_worker_database/runtime-tokio",
"sqlx?/runtime-tokio",
"graphile_worker_job/runtime-tokio",
"graphile_worker_task_details/runtime-tokio",
]
[lib]
name = "graphile_worker_ctx"
path = "src/lib.rs"
[dependencies.derive_builder]
version = "0.20.2"
[dependencies.getset]
version = "0.1.6"
[dependencies.graphile_worker_database]
version = "0.1.3"
default-features = false
[dependencies.graphile_worker_extensions]
version = "0.1.7"
[dependencies.graphile_worker_job]
version = "0.1.13"
default-features = false
[dependencies.graphile_worker_task_details]
version = "0.1.4"
default-features = false
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sqlx]
version = "0.8.6"
features = [
"chrono",
"postgres",
"json",
"macros",
]
optional = true
default-features = false
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"macros",
]