1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-09-18 20:54:33 +03:00
Files
authentication-service/crates/storage-pg/Cargo.toml
dependabot[bot] 0fbb21aea0 build(deps): bump the sea-query group with 2 updates
Bumps the sea-query group with 2 updates: [sea-query](https://github.com/SeaQL/sea-query) and [sea-query-binder](https://github.com/SeaQL/sea-query).


Updates `sea-query` from 0.30.7 to 0.31.0
- [Release notes](https://github.com/SeaQL/sea-query/releases)
- [Changelog](https://github.com/SeaQL/sea-query/blob/master/CHANGELOG.md)
- [Commits](https://github.com/SeaQL/sea-query/commits)

Updates `sea-query-binder` from 0.5.0 to 0.6.0
- [Release notes](https://github.com/SeaQL/sea-query/releases)
- [Changelog](https://github.com/SeaQL/sea-query/blob/master/CHANGELOG.md)
- [Commits](https://github.com/SeaQL/sea-query/compare/0.5.0...0.6.0)

---
updated-dependencies:
- dependency-name: sea-query
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sea-query
- dependency-name: sea-query-binder
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sea-query
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-04 23:10:53 +02:00

38 lines
1004 B
TOML

[package]
name = "mas-storage-pg"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
async-trait.workspace = true
sqlx.workspace = true
sea-query = { version = "0.31.0", features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"] }
sea-query-binder = { version = "0.6.0", features = ["sqlx-postgres", "with-uuid", "with-chrono", "postgres-array"] }
chrono.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tracing.workspace = true
futures-util = "0.3.30"
opentelemetry-semantic-conventions.workspace = true
rand.workspace = true
rand_chacha = "0.3.1"
url.workspace = true
uuid = "1.10.0"
ulid = { workspace = true, features = ["uuid"] }
oauth2-types.workspace = true
mas-storage.workspace = true
mas-data-model.workspace = true
mas-iana.workspace = true
mas-jose.workspace = true