mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +00:00
30 lines
897 B
TOML
30 lines
897 B
TOML
[package]
|
|
name = "background-jobs-core"
|
|
description = "Core types for implementing an asynchronous jobs processor"
|
|
version = "0.10.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"
|
|
|
|
[features]
|
|
default = []
|
|
with-actix = ["actix-rt", "tokio"]
|
|
completion-logging = []
|
|
error-logging = []
|
|
|
|
[dependencies]
|
|
actix-rt = { version = "2.2.0", optional = true }
|
|
anyhow = "1.0"
|
|
async-mutex = "1.0.1"
|
|
async-trait = "0.1.24"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tracing = "0.1"
|
|
tracing-futures = "0.2.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", optional = true, default-features = false, features = ["sync"] }
|
|
uuid = { version = "0.8.1", features = ["serde", "v4"] }
|