background-jobs/jobs-core/Cargo.toml

28 lines
785 B
TOML
Raw Normal View History

2018-11-05 02:13:06 +00:00
[package]
name = "background-jobs-core"
2019-09-22 17:12:08 +00:00
description = "Core types for implementing an asynchronous jobs processor"
2020-04-23 18:23:09 +00:00
version = "0.8.0-alpha.2"
2019-09-15 20:51:33 +00:00
license-file = "../LICENSE"
2018-11-05 02:13:06 +00:00
authors = ["asonix <asonix@asonix.dog>"]
2019-05-25 20:33:38 +00:00
repository = "https://git.asonix.dog/Aardwolf/background-jobs"
2018-11-18 01:46:42 +00:00
keywords = ["jobs", "processor"]
2019-09-15 20:51:33 +00:00
readme = "../README.md"
2018-11-05 02:13:06 +00:00
edition = "2018"
[features]
default = []
2020-04-23 18:23:09 +00:00
with-actix = ["actix-rt", "tokio"]
2018-11-05 02:13:06 +00:00
[dependencies]
2020-04-23 18:23:09 +00:00
actix-rt = { version = "1.1.0", optional = true }
2020-03-21 02:31:03 +00:00
anyhow = "1.0"
async-trait = "0.1.24"
2018-11-07 03:26:48 +00:00
chrono = { version = "0.4", features = ["serde"] }
2020-03-21 02:31:03 +00:00
futures = "0.3.4"
2018-11-05 02:13:06 +00:00
log = "0.4"
2020-03-21 02:31:03 +00:00
serde = { version = "1.0", features = ["derive"] }
2018-11-05 02:13:06 +00:00
serde_json = "1.0"
2020-03-21 02:31:03 +00:00
thiserror = "1.0"
tokio = { version = "0.2.13", optional = true }
2020-03-22 17:52:43 +00:00
uuid = { version = "0.8.1", features = ["serde", "v4"] }