background-jobs/jobs-actix/Cargo.toml

26 lines
696 B
TOML
Raw 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"
2020-03-21 02:31:03 +00:00
version = "0.7.0-alpha.0"
2019-09-15 20:51:33 +00:00
license-file = "../LICENSE"
2018-12-16 18:43:44 +00:00
authors = ["asonix <asonix@asonix.dog>"]
2019-05-25 20:33:38 +00:00
repository = "https://git.asonix.dog/Aardwolf/background-jobs"
2018-12-16 19:57:09 +00:00
keywords = ["jobs", "processor"]
2019-09-15 20:51:33 +00:00
readme = "../README.md"
2018-12-16 18:43:44 +00:00
edition = "2018"
[dependencies]
2020-03-21 02:31:03 +00:00
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" }
2018-12-16 18:43:44 +00:00
chrono = "0.4"
log = "0.4"
2019-05-27 17:29:11 +00:00
num_cpus = "1.10.0"
2019-08-31 16:09:26 +00:00
rand = "0.7.0"
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 = "0.2.13", features = ["sync"] }