1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

build(deps): bump schemars from 0.8.12 to 0.8.13

Bumps [schemars](https://github.com/GREsau/schemars) from 0.8.12 to 0.8.13.
- [Release notes](https://github.com/GREsau/schemars/releases)
- [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md)
- [Commits](https://github.com/GREsau/schemars/compare/v0.8.12...v0.8.13)

---
updated-dependencies:
- dependency-name: schemars
  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]
2023-08-29 05:30:14 +00:00
committed by Quentin Gliech
parent 9f58be0bcb
commit 79d9d7c08b
4 changed files with 7 additions and 7 deletions

8
Cargo.lock generated
View File

@ -4559,9 +4559,9 @@ dependencies = [
[[package]]
name = "schemars"
version = "0.8.12"
version = "0.8.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02c613288622e5f0c3fdc5dbd4db1c5fbe752746b1d1a56a0630b78fd00de44f"
checksum = "763f8cd0d4c71ed8389c90cb8100cba87e763bd01a8e614d4f0af97bcd50a161"
dependencies = [
"chrono",
"dyn-clone",
@ -4573,9 +4573,9 @@ dependencies = [
[[package]]
name = "schemars_derive"
version = "0.8.12"
version = "0.8.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "109da1e6b197438deb6db99952990c7f959572794b80ff93707d55a232545e7c"
checksum = "ec0f696e21e10fa546b7ffb1c9672c6de8fbc7a81acf59524386d8639bf12737"
dependencies = [
"proc-macro2",
"quote",

View File

@ -16,7 +16,7 @@ anyhow.workspace = true
camino = { version = "1.1.6", features = ["serde1"] }
chrono.workspace = true
figment = { version = "0.10.10", features = ["env", "yaml", "test"] }
schemars = { version = "0.8.12", features = ["url", "chrono"] }
schemars = { version = "0.8.13", features = ["url", "chrono"] }
ulid = { version = "1.0.0", features = ["serde"] }
url.workspace = true

View File

@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
serde = { workspace = true, optional = true }
schemars = { version = "0.8.12", default-features = false, optional = true }
schemars = { version = "0.8.13", default-features = false, optional = true }
[features]
default = ["serde", "schemars"]

View File

@ -18,7 +18,7 @@ p256 = { version = "0.13.2", features = ["ecdsa"] }
p384 = { version = "0.13.0", features = ["ecdsa"] }
rand.workspace = true
rsa = "0.9.2"
schemars = "0.8.12"
schemars = "0.8.13"
sec1 = "0.7.3"
serde.workspace = true
serde_json.workspace = true