2019-05-25 21:15:09 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-example"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
async-trait = "0.1.24"
|
2021-02-03 22:32:56 +00:00
|
|
|
background-jobs = { version = "0.9.0", path = "../.." }
|
2021-02-04 18:40:39 +00:00
|
|
|
background-jobs-sled-storage = { version = "0.9.0", path = "../../jobs-sled" }
|
|
|
|
chrono = "0.4"
|
2020-03-21 02:31:03 +00:00
|
|
|
env_logger = "0.7"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-02-04 18:40:39 +00:00
|
|
|
sled = "0.34"
|