apub/examples/background-jobs-example/Cargo.toml
Aode (lion) 52fbfcdb82
All checks were successful
continuous-integration/drone/push Build is passing
Bump versions
2021-12-05 15:19:45 -06:00

21 lines
680 B
TOML

[package]
name = "background-jobs-example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-rt = "2.4.0"
apub = { version = "0.2.0", path = "../../", features = ["with-awc", "with-background-jobs", "with-rustcrypto"] }
anyhow = "1"
awc = { version = "3.0.0-beta.10", default-features = false, features = ["rustls"] }
background-jobs = "0.11.0"
example-types = { version = "0.1.0", path = "../example-types/" }
rand = "0.8.4"
rsa = "0.5.0"
tracing = "0.1.29"
tracing-error = "0.2.0"
tracing-log = "0.1.2"
tracing-subscriber = { version = "0.3.1", features = ["env-filter"] }