mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +00:00
18 lines
514 B
TOML
18 lines
514 B
TOML
[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]
|
|
actix-rt = "2.0.0"
|
|
anyhow = "1.0"
|
|
async-trait = "0.1.24"
|
|
background-jobs = { version = "0.9.0", path = "../.." }
|
|
background-jobs-sled-storage = { version = "0.9.0", path = "../../jobs-sled" }
|
|
chrono = "0.4"
|
|
env_logger = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sled = "0.34"
|