1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00
Files
authentication-service/crates/tasks/Cargo.toml
dependabot[bot] a0373207a8 build(deps): bump the opentelemetry group with 1 update
Bumps the opentelemetry group with 1 update: [tracing-opentelemetry](https://github.com/tokio-rs/tracing-opentelemetry).

- [Release notes](https://github.com/tokio-rs/tracing-opentelemetry/releases)
- [Changelog](https://github.com/tokio-rs/tracing-opentelemetry/blob/v0.1.x/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/tracing-opentelemetry/compare/v0.20.0...v0.21.0)

---
updated-dependencies:
- dependency-name: tracing-opentelemetry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: opentelemetry
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-08-29 18:50:54 +02:00

37 lines
1.0 KiB
TOML

[package]
name = "mas-tasks"
version = "0.1.0"
authors = ["Quentin Gliech <quenting@element.io>"]
edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow.workspace = true
apalis-core = { version = "0.4.4", features = ["extensions", "tokio-comp", "storage"] }
apalis-cron = "0.4.4"
async-stream = "0.3.5"
async-trait = "0.1.73"
chrono.workspace = true
event-listener = "2.5.3"
futures-lite = "1.13.0"
rand.workspace = true
rand_chacha = "0.3.1"
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] }
thiserror.workspace = true
tokio = { version = "1.32.0", features = ["rt"] }
tower = "0.4.13"
tracing.workspace = true
tracing-opentelemetry = "0.21.0"
opentelemetry = "0.20.0"
ulid = "1.0.0"
url.workspace = true
serde.workspace = true
serde_json.workspace = true
mas-data-model = { path = "../data-model" }
mas-email = { path = "../email" }
mas-matrix = { path = "../matrix" }
mas-storage = { path = "../storage" }
mas-storage-pg = { path = "../storage-pg" }
mas-tower = { path = "../tower" }