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

16 lines
495 B
TOML
Raw Normal View History

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"
background-jobs = { version = "0.17.0", path = "../..", features = [ "error-logging", "sled" ] }
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"