2019-05-25 20:22:26 +00:00
|
|
|
[package]
|
|
|
|
name = "background-jobs-sled-storage"
|
|
|
|
description = "Sled storage backend for background-jobs"
|
2020-03-21 03:04:23 +00:00
|
|
|
version = "0.4.0-alpha.0"
|
2019-09-15 20:51:33 +00:00
|
|
|
license-file = "../LICENSE"
|
2019-05-25 20:22:26 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2019-05-25 20:33:38 +00:00
|
|
|
repository = "https://git.asonix.dog/Aardwolf/background-jobs"
|
2019-09-22 17:49:28 +00:00
|
|
|
readme = "../README.md"
|
2019-05-25 20:22:26 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-03-21 02:31:03 +00:00
|
|
|
actix-threadpool = "0.3.1"
|
|
|
|
async-trait = "0.1.24"
|
|
|
|
background-jobs-core = { version = "0.7", path = "../jobs-core" }
|
2019-05-25 23:09:10 +00:00
|
|
|
chrono = "0.4"
|
2020-03-21 16:50:24 +00:00
|
|
|
sled-extensions = { version = "0.3.0-alpha.0", features = ["bincode", "cbor"], git = "https://git.asonix.dog/Aardwolf/sled-extensions" }
|
2020-03-21 02:31:03 +00:00
|
|
|
thiserror = "1.0"
|
2020-03-22 17:52:43 +00:00
|
|
|
uuid = { version = "0.8.1", features = ["v4", "serde"] }
|