1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

build(deps): bump serde_with from 3.1.0 to 3.2.0

Bumps [serde_with](https://github.com/jonasbb/serde_with) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](https://github.com/jonasbb/serde_with/compare/v3.1.0...v3.2.0)

---
updated-dependencies:
- dependency-name: serde_with
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-08-08 19:25:59 +00:00
committed by Quentin Gliech
parent 13e1835a5b
commit bcc988beff
7 changed files with 11 additions and 10 deletions

9
Cargo.lock generated
View File

@ -5320,14 +5320,15 @@ dependencies = [
[[package]]
name = "serde_with"
version = "3.1.0"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21e47d95bc83ed33b2ecf84f4187ad1ab9685d18ff28db000c99deac8ce180e3"
checksum = "1402f54f9a3b9e2efe71c1cea24e648acce55887983553eeb858cf3115acfd49"
dependencies = [
"base64 0.21.2",
"chrono",
"hex",
"indexmap 1.9.3",
"indexmap 2.0.0",
"serde",
"serde_json",
"serde_with_macros",
@ -5336,9 +5337,9 @@ dependencies = [
[[package]]
name = "serde_with_macros"
version = "3.1.0"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea3cee93715c2e266b9338b7544da68a9f24e227722ba482bd1c024367c77c65"
checksum = "9197f1ad0e3c173a0222d3c4404fb04c3afe87e962bcb327af73e8301fa203c7"
dependencies = [
"darling 0.20.3",
"proc-macro2",

View File

@ -19,7 +19,7 @@ mime = "0.3.17"
rand = "0.8.5"
sentry = { version = "0.31.5", default-features = false }
serde = "1.0.183"
serde_with = "3.1.0"
serde_with = "3.2.0"
serde_urlencoded = "0.7.1"
serde_json = "1.0.104"
thiserror = "1.0.44"

View File

@ -21,7 +21,7 @@ ulid = { version = "1.0.0", features = ["serde"] }
url = { version = "2.4.0", features = ["serde"] }
serde = { version = "1.0.183", features = ["derive"] }
serde_with = { version = "3.1.0", features = ["hex", "chrono"] }
serde_with = { version = "3.2.0", features = ["hex", "chrono"] }
serde_json = "1.0.104"
pem-rfc7468 = "0.7.0"

View File

@ -37,7 +37,7 @@ sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] }
# Various structure (de)serialization
serde = { version = "1.0.183", features = ["derive"] }
serde_with = { version = "3.1.0", features = ["hex", "chrono"] }
serde_with = { version = "3.2.0", features = ["hex", "chrono"] }
serde_json = "1.0.104"
serde_urlencoded = "0.7.1"

View File

@ -22,7 +22,7 @@ schemars = "0.8.12"
sec1 = "0.7.3"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
serde_with = { version = "3.1.0", features = ["base64"] }
serde_with = { version = "3.2.0", features = ["base64"] }
sha2 = { version = "0.10.7", features = ["oid"] }
signature = "2.1.0"
thiserror = "1.0.44"

View File

@ -13,7 +13,7 @@ language-tags = { version = "0.3.2", features = ["serde"] }
url = { version = "2.4.0", features = ["serde"] }
parse-display = "0.8.2"
indoc = "2.0.3"
serde_with = { version = "3.1.0", features = ["chrono"] }
serde_with = { version = "3.2.0", features = ["chrono"] }
chrono = "0.4.26"
sha2 = "0.10.7"
data-encoding = "2.4.0"

View File

@ -33,7 +33,7 @@ rand = "0.8.5"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
serde_urlencoded = "0.7.1"
serde_with = "3.1.0"
serde_with = "3.2.0"
thiserror = "1.0.44"
tokio = { version = "1.29.1", features = ["rt", "macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["full"] }