background-jobs/jobs-core/Cargo.toml
2020-03-22 12:52:43 -05:00

22 lines
619 B
TOML

[package]
name = "background-jobs-core"
description = "Core types for implementing an asynchronous jobs processor"
version = "0.7.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]
anyhow = "1.0"
async-trait = "0.1.24"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3.4"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
uuid = { version = "0.8.1", features = ["serde", "v4"] }