mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +00:00
20 lines
771 B
TOML
20 lines
771 B
TOML
[package]
|
|
name = "background-jobs-sled-storage"
|
|
description = "Sled storage backend for background-jobs"
|
|
version = "0.8.0-alpha.0"
|
|
license-file = "../LICENSE"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
repository = "https://git.asonix.dog/Aardwolf/background-jobs"
|
|
readme = "../README.md"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-threadpool = "0.3.1"
|
|
async-trait = "0.1.24"
|
|
background-jobs-core = { version = "0.8.0-alpha.0", path = "../jobs-core" }
|
|
chrono = "0.4"
|
|
sled-extensions = { version = "0.3.0-alpha.0", features = ["bincode", "cbor"], git = "https://git.asonix.dog/Aardwolf/sled-extensions" }
|
|
thiserror = "1.0"
|
|
uuid = { version = "0.8.1", features = ["v4", "serde"] }
|