mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 12:00:59 +00:00
19 lines
571 B
TOML
19 lines
571 B
TOML
[package]
|
|
name = "basic-example"
|
|
version = "0.1.0"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-rt = "2.0.0"
|
|
anyhow = "1.0"
|
|
background-jobs = { version = "0.13.0", path = "../..", features = [
|
|
"error-logging",
|
|
] }
|
|
background-jobs-sled-storage = { version = "0.10.0", path = "../../jobs-sled" }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.2", features = ["fmt"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sled = "0.34"
|