You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-29 22:01:14 +03:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "mas-tasks"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
apalis-core = { version = "0.4.5", features = ["extensions", "tokio-comp", "storage"] }
|
|
apalis-cron = "0.4.5"
|
|
async-stream = "0.3.5"
|
|
async-trait = "0.1.74"
|
|
chrono.workspace = true
|
|
event-listener = "3.0.0"
|
|
futures-lite = "1.13.0"
|
|
rand.workspace = true
|
|
rand_chacha = "0.3.1"
|
|
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
|
|
thiserror.workspace = true
|
|
tokio = { version = "1.33.0", features = ["rt"] }
|
|
tower = "0.4.13"
|
|
tracing.workspace = true
|
|
tracing-opentelemetry = "0.21.0"
|
|
opentelemetry = "0.20.0"
|
|
ulid.workspace = true
|
|
url.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
mas-data-model = { path = "../data-model" }
|
|
mas-email = { path = "../email" }
|
|
mas-i18n = { path = "../i18n" }
|
|
mas-matrix = { path = "../matrix" }
|
|
mas-storage = { path = "../storage" }
|
|
mas-storage-pg = { path = "../storage-pg" }
|
|
mas-templates = { path = "../templates" }
|
|
mas-tower = { path = "../tower" }
|