2018-11-05 02:13:06 +00:00
|
|
|
[package]
|
2018-11-17 01:10:31 +00:00
|
|
|
name = "background-jobs-core"
|
2018-11-18 01:41:21 +00:00
|
|
|
description = "Core types for implementing an asynchronous jobs processor on tokio"
|
2019-05-28 00:30:30 +00:00
|
|
|
version = "0.6.0"
|
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"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-11-07 03:26:48 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2018-11-05 02:13:06 +00:00
|
|
|
failure = "0.1"
|
|
|
|
futures = "0.1.21"
|
|
|
|
log = "0.4"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|