background-jobs/jobs-sled/Cargo.toml

26 lines
875 B
TOML
Raw Permalink Normal View History

[package]
2024-01-13 21:57:37 +00:00
name = "background-jobs-sled"
description = "Sled storage backend for background-jobs"
2024-02-05 05:39:23 +00:00
version = "0.18.0"
2021-09-21 15:17:24 +00:00
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/background-jobs"
2024-01-18 17:58:59 +00:00
keywords = ["jobs", "processor", "sled"]
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]
2020-03-21 02:31:03 +00:00
async-trait = "0.1.24"
2024-02-05 05:39:23 +00:00
background-jobs-core = { version = "0.18.0", path = "../jobs-core" }
2021-02-04 18:37:29 +00:00
bincode = "1.2"
sled = "0.34"
2024-01-08 04:46:47 +00:00
serde = { version = "1", features = ["derive"] }
2021-02-04 18:37:29 +00:00
serde_cbor = "0.11"
2024-01-08 04:46:47 +00:00
time = { version = "0.3", features = ["serde-human-readable"] }
2020-03-21 02:31:03 +00:00
thiserror = "1.0"
2024-01-18 18:27:19 +00:00
tokio = { version = "1", default-features = false, features = ["rt", "sync", "time", "tracing"] }
2022-07-02 19:03:26 +00:00
tracing = "0.1"
2024-01-08 04:46:47 +00:00
uuid = { version = "1", features = ["v7", "serde"] }