32 lines
939 B
TOML
32 lines
939 B
TOML
[package]
|
|
name = "mas-tasks"
|
|
version = "0.1.0"
|
|
authors = ["quentin gliech <quenting@element.io>"]
|
|
edition = "2021"
|
|
license = "apache-2.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.70"
|
|
apalis-core = { version = "=0.4.0-alpha.5", features = ["extensions", "tokio-comp"] }
|
|
apalis-cron = "=0.4.0-alpha.5"
|
|
apalis-sql = { version = "=0.4.0-alpha.5", features = ["postgres", "tokio-comp"] }
|
|
async-trait = "0.1.66"
|
|
chrono = "0.4.24"
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
|
|
thiserror = "1.0.30"
|
|
tower = "0.4.13"
|
|
tracing = "0.1.37"
|
|
tracing-opentelemetry = "0.18.0"
|
|
ulid = "1.0.0"
|
|
url = "2.3.1"
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
|
|
mas-axum-utils = { path = "../axum-utils" }
|
|
mas-storage = { path = "../storage" }
|
|
mas-storage-pg = { path = "../storage-pg" }
|
|
mas-email = { path = "../email" }
|
|
mas-http = { path = "../http" }
|
|
mas-data-model = { path = "../data-model" }
|