[package] name = "background-jobs-actix" description = "in-process jobs processor based on Actix" version = "0.14.4" license = "AGPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/asonix/background-jobs" keywords = ["jobs", "processor"] readme = "../README.md" edition = "2021" [dependencies] actix-rt = "2.5.1" anyhow = "1.0" async-mutex = "1.0.1" async-trait = "0.1.24" background-jobs-core = { version = "0.14.0", path = "../jobs-core", features = [ "with-actix", ] } metrics = "0.20.1" tracing = "0.1" tracing-futures = "0.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" tokio = { version = "1", default-features = false, features = [ "macros", "rt", "sync", ] } uuid = { version = "1", features = ["v4", "serde"] }