[package]
edition = "2021"
name = "graphile_worker_crontab_runner"
version = "0.7.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crontab runner package for graphile worker, a high performance Rust/PostgreSQL job queue"
homepage = "https://docs.rs/graphile_worker_crontab_runner"
documentation = "https://docs.rs/graphile_worker_crontab_runner"
readme = "README.md"
keywords = []
categories = []
license-file = "LICENSE.md"
repository = "https://github.com/leo91000/graphile_worker_rs"
[features]
default = [
"runtime-tokio",
"tls-rustls",
"driver-sqlx",
]
driver-sqlx = [
"graphile_worker_database/driver-sqlx",
"sqlx",
]
driver-tokio-postgres = ["graphile_worker_database/driver-tokio-postgres"]
runtime-async-std = [
"graphile_worker_database/runtime-async-std",
"sqlx?/runtime-async-std",
"graphile_worker_runtime/runtime-async-std",
"graphile_worker_lifecycle_hooks/runtime-async-std",
"graphile_worker_shutdown_signal/runtime-async-std",
]
runtime-tokio = [
"graphile_worker_database/runtime-tokio",
"sqlx?/runtime-tokio",
"graphile_worker_runtime/runtime-tokio",
"graphile_worker_lifecycle_hooks/runtime-tokio",
"graphile_worker_shutdown_signal/runtime-tokio",
]
tls-native-tls = [
"graphile_worker_database/tls-native-tls",
"sqlx?/tls-native-tls",
]
tls-rustls = [
"graphile_worker_database/tls-rustls",
"sqlx?/tls-rustls",
]
[lib]
name = "graphile_worker_crontab_runner"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4.45"
features = ["serde"]
[dependencies.futures]
version = "0.3.32"
[dependencies.getset]
version = "0.1.6"
[dependencies.graphile_worker_crontab_types]
version = "0.5.16"
[dependencies.graphile_worker_database]
version = "0.1.4"
default-features = false
[dependencies.graphile_worker_lifecycle_hooks]
version = "0.3.3"
default-features = false
[dependencies.graphile_worker_runtime]
version = "0.1.3"
default-features = false
[dependencies.graphile_worker_shutdown_signal]
version = "0.3.13"
default-features = false
[dependencies.indoc]
version = "2.0.7"
[dependencies.once_cell]
version = "1.21.4"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sqlx]
version = "0.9.0"
features = [
"chrono",
"postgres",
"json",
"macros",
]
optional = true
default-features = false
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"macros",
"sync",
]