background-jobs/jobs-actix/Cargo.toml

29 lines
747 B
TOML
Raw Permalink Normal View History

2018-12-16 18:43:44 +00:00
[package]
name = "background-jobs-actix"
2018-12-16 19:57:09 +00:00
description = "in-process jobs processor based on Actix"
2024-02-05 05:39:23 +00:00
version = "0.18.0"
2021-09-21 15:17:24 +00:00
license = "AGPL-3.0"
2018-12-16 18:43:44 +00:00
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/background-jobs"
2024-01-18 17:58:59 +00:00
keywords = ["jobs", "processor", "actix"]
2019-09-15 20:51:33 +00:00
readme = "../README.md"
2021-10-21 21:31:29 +00:00
edition = "2021"
2018-12-16 18:43:44 +00:00
[dependencies]
actix-rt = "2.5.1"
2020-03-21 02:31:03 +00:00
async-trait = "0.1.24"
2024-02-05 05:39:23 +00:00
background-jobs-core = { version = "0.18.0", path = "../jobs-core" }
2024-01-07 18:30:04 +00:00
metrics = "0.22.0"
2021-09-16 22:50:32 +00:00
tracing = "0.1"
2020-03-21 02:31:03 +00:00
serde = { version = "1.0", features = ["derive"] }
2018-12-16 18:43:44 +00:00
serde_json = "1.0"
2020-03-21 02:31:03 +00:00
thiserror = "1.0"
tokio = { version = "1", default-features = false, features = [
"macros",
"rt",
"sync",
2024-01-13 21:37:44 +00:00
"time",
2024-01-11 03:11:45 +00:00
"tracing",
] }
2024-01-08 00:52:09 +00:00
uuid = { version = "1", features = ["v7", "serde"] }