[dependencies.axum]
optional = true
version = "0.8"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.graphile_worker]
version = "0.9.2"
[dependencies.graphile_worker_crontab_parser]
version = "0.5.12"
[dependencies.log]
version = "0.4.28"
[dependencies.metrics]
version = "0.24"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid", "json", "macros"]
version = "0.8.6"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["env-filter", "json"]
version = "0.3"
[dependencies.uuid]
features = ["v4", "v7", "serde"]
version = "1.0"
[dev-dependencies.axum]
version = "0.8"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.fastrand]
version = "2.0"
[dev-dependencies.metrics-exporter-prometheus]
version = "0.18.1"
[dev-dependencies.tower]
version = "0.5"
[dev-dependencies.tower-http]
features = ["cors", "trace"]
version = "0.6"
[[example]]
name = "admin_server"
path = "examples/admin_server.rs"
required-features = ["axum"]
[[example]]
name = "basic_worker"
path = "examples/basic_worker.rs"
[[example]]
name = "dlq_management"
path = "examples/dlq_management.rs"
[[example]]
name = "enqueue_jobs"
path = "examples/enqueue_jobs.rs"
[[example]]
name = "metrics_plugin"
path = "examples/metrics_plugin.rs"
[features]
axum = ["dep:axum"]
default = []
[lib]
name = "backfill"
path = "src/lib.rs"
[lints.clippy]
unwrap_used = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = 2
[lints.rust.rust_2018_idioms]
level = "warn"
priority = 4
[lints.rust.trivial_casts]
level = "warn"
priority = 3
[lints.rust.unsafe_code]
level = "deny"
priority = 1
[package]
authors = ["C J Silverio <ceejceej@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "data-structures"]
description = "A boringly-named priority work queue system for doing async tasks."
edition = "2024"
homepage = "https://github.com/ceejbot/backfill"
license = "Parity-7.0.0"
name = "backfill"
readme = "README.md"
repository = "https://github.com/ceejbot/backfill"
version = "0.5.2"
[[test]]
name = "admin_api_tests"
path = "tests/admin_api_tests.rs"
[[test]]
name = "dlq_tests"
path = "tests/dlq_tests.rs"
[[test]]
name = "integration_tests_clean"
path = "tests/integration_tests_clean.rs"
[[test]]
name = "plugin_tests"
path = "tests/plugin_tests.rs"
[[test]]
name = "worker_tests"
path = "tests/worker_tests.rs"