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

Bump serde_with from 2.0.0 to 2.0.1

Bumps [serde_with](https://github.com/jonasbb/serde_with) from 2.0.0 to 2.0.1.
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](https://github.com/jonasbb/serde_with/compare/v2.0.0...v2.0.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-09-12 19:29:02 +00:00
committed by Quentin Gliech
parent 42e5c46e8a
commit 5fcdbe67c6
7 changed files with 10 additions and 10 deletions

8
Cargo.lock generated
View File

@ -4087,9 +4087,9 @@ dependencies = [
[[package]]
name = "serde_with"
version = "2.0.0"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89df7a26519371a3cce44fbb914c2819c84d9b897890987fa3ab096491cc0ea8"
checksum = "368f2d60d049ea019a84dcd6687b0d1e0030fe663ae105039bdf967ed5e6a9a7"
dependencies = [
"base64",
"chrono",
@ -4103,9 +4103,9 @@ dependencies = [
[[package]]
name = "serde_with_macros"
version = "2.0.0"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de337f322382fcdfbb21a014f7c224ee041a23785651db67b9827403178f698f"
checksum = "1ccadfacf6cf10faad22bbadf55986bdd0856edfb5d9210aa1dcf1f516e84e93"
dependencies = [
"darling",
"proc-macro2",

View File

@ -19,7 +19,7 @@ http-body = "0.4.5"
mime = "0.3.16"
rand = "0.8.5"
serde = "1.0.144"
serde_with = "2.0.0"
serde_with = "2.0.1"
serde_urlencoded = "0.7.1"
serde_json = "1.0.85"
sqlx = "0.6.1"

View File

@ -19,7 +19,7 @@ chrono = { version = "0.4.22", features = ["serde"] }
url = { version = "2.3.1", features = ["serde"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_with = { version = "2.0.0", features = ["hex", "chrono"] }
serde_with = { version = "2.0.1", features = ["hex", "chrono"] }
serde_json = "1.0.85"
sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] }
lettre = { version = "0.10.1", default-features = false, features = ["serde", "builder"] }

View File

@ -32,7 +32,7 @@ sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] }
# Various structure (de)serialization
serde = { version = "1.0.144", features = ["derive"] }
serde_with = { version = "2.0.0", features = ["hex", "chrono"] }
serde_with = { version = "2.0.1", features = ["hex", "chrono"] }
serde_json = "1.0.85"
serde_urlencoded = "0.7.1"

View File

@ -23,7 +23,7 @@ schemars = "0.8.10"
sec1 = "0.3.0"
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
serde_with = { version = "2.0.0", features = ["base64"] }
serde_with = { version = "2.0.1", features = ["base64"] }
sha2 = "0.10.5"
signature = "1.6.0"
thiserror = "1.0.34"

View File

@ -13,7 +13,7 @@ language-tags = { version = "0.3.2", features = ["serde"] }
url = { version = "2.3.1", features = ["serde"] }
parse-display = "0.6.0"
indoc = "1.0.7"
serde_with = { version = "2.0.0", features = ["chrono"] }
serde_with = { version = "2.0.1", features = ["chrono"] }
chrono = "0.4.22"
sha2 = "0.10.5"
data-encoding = "2.3.2"

View File

@ -9,5 +9,5 @@ license = "Apache-2.0"
axum = { version = "0.6.0-rc.1", default-features = false }
serde = { version = "1.0.144", features = ["derive"] }
serde_urlencoded = "0.7.1"
serde_with = "2.0.0"
serde_with = "2.0.1"
url = "2.3.1"