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

18 lines
586 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]
2020-03-21 02:31:03 +00:00
anyhow = "1.0"
2024-01-14 17:49:07 +00:00
background-jobs = { version = "0.17.0", path = "../..", default-features = false, features = [ "error-logging", "sled", "tokio" ] }
time = "0.3"
2024-01-14 17:49:07 +00:00
tokio = { version = "1", features = ["full"] }
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"