2019-05-25 21:15:09 +00:00
|
|
|
[package]
|
2021-10-29 23:52:29 +00:00
|
|
|
name = "basic-example"
|
2019-05-25 21:15:09 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2021-10-21 21:31:29 +00:00
|
|
|
edition = "2021"
|
2019-05-25 21:15:09 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-03 22:32:56 +00:00
|
|
|
actix-rt = "2.0.0"
|
2020-03-21 02:31:03 +00:00
|
|
|
anyhow = "1.0"
|
2024-01-07 18:30:04 +00:00
|
|
|
background-jobs = { version = "0.16.0", path = "../..", features = [
|
2022-07-02 18:42:17 +00:00
|
|
|
"error-logging",
|
|
|
|
] }
|
2021-09-16 22:50:32 +00:00
|
|
|
background-jobs-sled-storage = { version = "0.10.0", path = "../../jobs-sled" }
|
|
|
|
tracing = "0.1"
|
2023-04-28 00:29:46 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
2020-03-21 02:31:03 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-02-04 18:40:39 +00:00
|
|
|
sled = "0.34"
|