[package] name = "eternaltwin_job_store" version = "0.16.0" authors = ["Charles Samborski ", "Moulins "] description = "Job store implementation" documentation = "https://gitlab.com/eternaltwin/eternaltwin" homepage = "https://gitlab.com/eternaltwin/eternaltwin" repository = "https://gitlab.com/eternaltwin/eternaltwin" readme = "./README.md" keywords = ["etwin"] license = "AGPL-3.0-or-later" edition = "2018" [features] default = ["mem", "pg"] mem = [] pg = ["dep:sqlx", "eternaltwin_core/sqlx-postgres"] [dependencies] async-trait = "0.1.66" eternaltwin_core = { version = "0.16.0", path = "../core", features = ["serde"] } serde_json = "1.0.94" sqlx = { workspace = true, default-features = false, features = ["macros", "chrono", "postgres", "runtime-tokio-rustls", "uuid"], optional = true } [dev-dependencies] eternaltwin_config = { version = "0.16.0", path = "../config" } eternaltwin_db_schema = { version = "0.16.0", path = "../db_schema" } serial_test = "1.0.0" tokio = { version = "1.26.0", features = ["macros", "rt"] }