mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +00:00
25 lines
696 B
TOML
25 lines
696 B
TOML
[package]
|
|
name = "background-jobs-actix"
|
|
description = "in-process jobs processor based on Actix"
|
|
version = "0.7.0-alpha.0"
|
|
license-file = "../LICENSE"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
repository = "https://git.asonix.dog/Aardwolf/background-jobs"
|
|
keywords = ["jobs", "processor"]
|
|
readme = "../README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
actix = "0.10.0-alpha.2"
|
|
actix-rt = "1.0.0"
|
|
anyhow = "1.0"
|
|
async-trait = "0.1.24"
|
|
background-jobs-core = { version = "0.7", path = "../jobs-core" }
|
|
chrono = "0.4"
|
|
log = "0.4"
|
|
num_cpus = "1.10.0"
|
|
rand = "0.7.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
tokio = { version = "0.2.13", features = ["sync"] }
|