You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
build(deps): bump serde_with from 3.2.0 to 3.3.0
Bumps [serde_with](https://github.com/jonasbb/serde_with) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.2.0...v3.3.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:
committed by
Quentin Gliech
parent
c879379103
commit
6a2f1367d1
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -4875,9 +4875,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_with"
|
name = "serde_with"
|
||||||
version = "3.2.0"
|
version = "3.3.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1402f54f9a3b9e2efe71c1cea24e648acce55887983553eeb858cf3115acfd49"
|
checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.21.2",
|
"base64 0.21.2",
|
||||||
"chrono",
|
"chrono",
|
||||||
@ -4892,9 +4892,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_with_macros"
|
name = "serde_with_macros"
|
||||||
version = "3.2.0"
|
version = "3.3.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9197f1ad0e3c173a0222d3c4404fb04c3afe87e962bcb327af73e8301fa203c7"
|
checksum = "2e6be15c453eb305019bfa438b1593c731f36a289a7853f7707ee29e870b3b3c"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"darling 0.20.3",
|
"darling 0.20.3",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
|
@ -19,7 +19,7 @@ mime = "0.3.17"
|
|||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
sentry = { version = "0.31.5", default-features = false }
|
sentry = { version = "0.31.5", default-features = false }
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_with = "3.2.0"
|
serde_with = "3.3.0"
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
|
@ -21,7 +21,7 @@ ulid = { version = "1.0.0", features = ["serde"] }
|
|||||||
url.workspace = true
|
url.workspace = true
|
||||||
|
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_with = { version = "3.2.0", features = ["hex", "chrono"] }
|
serde_with = { version = "3.3.0", features = ["hex", "chrono"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
|
|
||||||
pem-rfc7468 = "0.7.0"
|
pem-rfc7468 = "0.7.0"
|
||||||
|
@ -38,7 +38,7 @@ sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] }
|
|||||||
|
|
||||||
# Various structure (de)serialization
|
# Various structure (de)serialization
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_with = { version = "3.2.0", features = ["hex", "chrono"] }
|
serde_with = { version = "3.3.0", features = ["hex", "chrono"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ schemars = "0.8.12"
|
|||||||
sec1 = "0.7.3"
|
sec1 = "0.7.3"
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde_with = { version = "3.2.0", features = ["base64"] }
|
serde_with = { version = "3.3.0", features = ["base64"] }
|
||||||
sha2 = { version = "0.10.7", features = ["oid"] }
|
sha2 = { version = "0.10.7", features = ["oid"] }
|
||||||
signature = "2.1.0"
|
signature = "2.1.0"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
|
@ -12,7 +12,7 @@ serde_json.workspace = true
|
|||||||
language-tags = { version = "0.3.2", features = ["serde"] }
|
language-tags = { version = "0.3.2", features = ["serde"] }
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
parse-display = "0.8.2"
|
parse-display = "0.8.2"
|
||||||
serde_with = { version = "3.2.0", features = ["chrono"] }
|
serde_with = { version = "3.3.0", features = ["chrono"] }
|
||||||
chrono.workspace = true
|
chrono.workspace = true
|
||||||
sha2 = "0.10.7"
|
sha2 = "0.10.7"
|
||||||
data-encoding = "2.4.0"
|
data-encoding = "2.4.0"
|
||||||
|
@ -33,7 +33,7 @@ rand.workspace = true
|
|||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_with = "3.2.0"
|
serde_with = "3.3.0"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = { version = "1.32.0", features = ["rt", "macros", "rt-multi-thread"] }
|
tokio = { version = "1.32.0", features = ["rt", "macros", "rt-multi-thread"] }
|
||||||
tower = { version = "0.4.13", features = ["full"] }
|
tower = { version = "0.4.13", features = ["full"] }
|
||||||
|
Reference in New Issue
Block a user