background-jobs/examples/panic-example/Cargo.toml

21 lines
598 B
TOML
Raw Normal View History

2019-05-25 21:15:09 +00:00
[package]
2021-10-29 23:52:29 +00:00
name = "panic-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-08 22:34:22 +00:00
background-jobs = { version = "0.17.0", path = "../..", features = [
"error-logging",
] }
2021-09-16 22:50:32 +00:00
background-jobs-sled-storage = { version = "0.10.0", path = "../../jobs-sled" }
time = "0.3"
2021-09-16 22:50:32 +00:00
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"