Bumps [sqlx](https://github.com/launchbadge/sqlx) from 0.7.1 to 0.7.2. - [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md) - [Commits](https://github.com/launchbadge/sqlx/commits) --- updated-dependencies: - dependency-name: sqlx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
name = "mas-storage-pg"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.73"
|
|
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "json", "uuid", "ipnetwork"] }
|
|
sea-query = { version = "0.30.2", features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"] }
|
|
sea-query-binder = { version = "0.5.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.28"
|
|
|
|
rand.workspace = true
|
|
rand_chacha = "0.3.1"
|
|
url.workspace = true
|
|
uuid = "1.4.1"
|
|
ulid = { workspace = true, features = ["uuid"] }
|
|
|
|
oauth2-types = { path = "../oauth2-types" }
|
|
mas-storage = { path = "../storage" }
|
|
mas-data-model = { path = "../data-model" }
|
|
mas-iana = { path = "../iana" }
|
|
mas-jose = { path = "../jose" }
|