background-jobs/jobs-sled/Cargo.toml

24 lines
726 B
TOML
Raw Normal View History

[package]
name = "background-jobs-sled-storage"
description = "Sled storage backend for background-jobs"
2021-09-16 22:50:32 +00:00
version = "0.10.0"
2021-09-21 15:17:24 +00:00
license = "AGPL-3.0"
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"
2021-10-21 21:31:29 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-02-06 16:50:47 +00:00
actix-rt = "2.0.1"
2020-03-21 02:31:03 +00:00
async-trait = "0.1.24"
2021-11-23 00:29:12 +00:00
background-jobs-core = { version = "0.11.0", path = "../jobs-core" }
2021-02-04 18:37:29 +00:00
bincode = "1.2"
2019-05-25 23:09:10 +00:00
chrono = "0.4"
2021-02-04 18:37:29 +00:00
sled = "0.34"
serde_cbor = "0.11"
2020-03-21 02:31:03 +00:00
thiserror = "1.0"
2021-02-04 18:37:29 +00:00
tokio = { version = "1", default-features = false, features = ["rt"] }
2020-03-22 17:52:43 +00:00
uuid = { version = "0.8.1", features = ["v4", "serde"] }