[package] name = "archimedes_crontab_runner" version = "0.5.0" edition = "2021" license = "MIT" description = "Crontab runner package for archimedes, a high performance Rust/PostgreSQL job queue" homepage = "https://docs.rs/archimedes_crontab_runner" documentation = "https://docs.rs/archimedes_crontab_runner" repository = "https://github.com/leo91000/archimedes/crates/crontab_runner" keywords = [] categories = [] readme = "README.md" [features] default = ["runtime-tokio-native-tls"] runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls", "tokio"] runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls", "tokio"] [dependencies] archimedes_crontab_types = { path = "../crontab_types", version = "0.5.0" } archimedes_shutdown_signal = { path = "../shutdown_signal", version = "0.3.0" } chrono = { workspace = true } sqlx = { workspace = true } thiserror = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } getset = { workspace = true } tracing = { workspace = true } once_cell = { workspace = true } tokio = { workspace = true, features = ["time"], optional = true }