runledger-runtime 0.1.1

Async worker, scheduler, and reaper runtime for the Runledger job system
Documentation
[package]
name = "runledger-runtime"
version = "0.1.1"
edition = "2024"
license = "MIT"
description = "Async worker, scheduler, and reaper runtime for the Runledger job system"
readme = "../README.md"
repository = "https://github.com/featherenvy/runledger"
homepage = "https://github.com/featherenvy/runledger"
documentation = "https://docs.rs/runledger-runtime"
keywords = ["jobs", "workflows", "postgres", "queue"]
categories = ["asynchronous", "database"]

[dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
cron = "0.16"
futures-util = "0.3"
runledger-core = { workspace = true }
runledger-postgres = { workspace = true }
serde_json = "1"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "postgres", "uuid", "chrono", "macros"] }
thiserror = "2"
tokio = { workspace = true }
tracing = { workspace = true }
uuid = { version = "1", features = ["v7", "serde"] }

[dev-dependencies]
async-trait = "0.1"
runledger-postgres = { workspace = true, features = ["test-support"] }
testcontainers = { version = "0.27", features = ["watchdog"] }