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

Bump chrono from 0.4.20 to 0.4.22

Bumps [chrono](https://github.com/chronotope/chrono) from 0.4.20 to 0.4.22.
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](https://github.com/chronotope/chrono/compare/v0.4.20...v0.4.22)

---
updated-dependencies:
- dependency-name: chrono
  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-08-19 09:58:49 +00:00
committed by Quentin Gliech
parent 739507d883
commit 22b1406279
9 changed files with 33 additions and 10 deletions

27
Cargo.lock generated
View File

@ -97,6 +97,15 @@ dependencies = [
"alloc-no-stdlib", "alloc-no-stdlib",
] ]
[[package]]
name = "android_system_properties"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e"
dependencies = [
"libc",
]
[[package]] [[package]]
name = "ansi_term" name = "ansi_term"
version = "0.12.1" version = "0.12.1"
@ -761,10 +770,11 @@ dependencies = [
[[package]] [[package]]
name = "chrono" name = "chrono"
version = "0.4.20" version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
dependencies = [ dependencies = [
"iana-time-zone",
"js-sys", "js-sys",
"num-integer", "num-integer",
"num-traits", "num-traits",
@ -1962,6 +1972,19 @@ dependencies = [
"tokio-io-timeout", "tokio-io-timeout",
] ]
[[package]]
name = "iana-time-zone"
version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad2bfd338099682614d3ee3fe0cd72e0b6a41ca6a87f6a74a3bd593c91650501"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"js-sys",
"wasm-bindgen",
"winapi",
]
[[package]] [[package]]
name = "ident_case" name = "ident_case"
version = "1.0.1" version = "1.0.1"

View File

@ -10,7 +10,7 @@ async-trait = "0.1.57"
axum = { version = "0.5.15", features = ["headers"] } axum = { version = "0.5.15", features = ["headers"] }
axum-extra = { version = "0.3.7", features = ["cookie-private"] } axum-extra = { version = "0.3.7", features = ["cookie-private"] }
bincode = "1.3.3" bincode = "1.3.3"
chrono = "0.4.20" chrono = "0.4.22"
data-encoding = "2.3.2" data-encoding = "2.3.2"
futures-util = "0.3.23" futures-util = "0.3.23"
headers = "0.3.7" headers = "0.3.7"

View File

@ -15,7 +15,7 @@ anyhow = "1.0.62"
schemars = { version = "0.8.10", features = ["url", "chrono"] } schemars = { version = "0.8.10", features = ["url", "chrono"] }
figment = { version = "0.10.6", features = ["env", "yaml", "test"] } figment = { version = "0.10.6", features = ["env", "yaml", "test"] }
chrono = { version = "0.4.20", features = ["serde"] } chrono = { version = "0.4.22", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] }
serde = { version = "1.0.142", features = ["derive"] } serde = { version = "1.0.142", features = ["derive"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
chrono = "0.4.20" chrono = "0.4.22"
thiserror = "1.0.32" thiserror = "1.0.32"
serde = "1.0.142" serde = "1.0.142"
url = { version = "2.2.2", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] }

View File

@ -48,7 +48,7 @@ crc = "3.0.0"
# Various data types and utilities # Various data types and utilities
data-encoding = "2.3.2" data-encoding = "2.3.2"
chrono = { version = "0.4.20", features = ["serde"] } chrono = { version = "0.4.22", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] }
mime = "0.3.16" mime = "0.3.16"
rand = "0.8.5" rand = "0.8.5"

View File

@ -9,7 +9,7 @@ license = "Apache-2.0"
anyhow = "1.0.62" anyhow = "1.0.62"
async-trait = "0.1.57" async-trait = "0.1.57"
base64ct = { version = "1.5.1", features = ["std"] } base64ct = { version = "1.5.1", features = ["std"] }
chrono = { version = "0.4.20", features = ["serde"] } chrono = { version = "0.4.22", features = ["serde"] }
crypto-mac = { version = "0.11.1", features = ["std"] } crypto-mac = { version = "0.11.1", features = ["std"] }
digest = "0.10.3" digest = "0.10.3"
ecdsa = { version = "0.14.3", features = ["sign", "verify", "pem", "pkcs8"] } ecdsa = { version = "0.14.3", features = ["sign", "verify", "pem", "pkcs8"] }

View File

@ -14,7 +14,7 @@ url = { version = "2.2.2", features = ["serde"] }
parse-display = "0.5.5" parse-display = "0.5.5"
indoc = "1.0.7" indoc = "1.0.7"
serde_with = { version = "2.0.0", features = ["chrono"] } serde_with = { version = "2.0.0", features = ["chrono"] }
chrono = "0.4.20" chrono = "0.4.22"
sha2 = "0.10.2" sha2 = "0.10.2"
data-encoding = "2.3.2" data-encoding = "2.3.2"
thiserror = "1.0.32" thiserror = "1.0.32"

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies] [dependencies]
tokio = "1.20.1" tokio = "1.20.1"
sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] } sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] }
chrono = { version = "0.4.20", features = ["serde"] } chrono = { version = "0.4.22", features = ["serde"] }
serde = { version = "1.0.142", features = ["derive"] } serde = { version = "1.0.142", features = ["derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"
thiserror = "1.0.32" thiserror = "1.0.32"

View File

@ -20,7 +20,7 @@ serde = { version = "1.0.142", features = ["derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"
serde_urlencoded = "0.7.1" serde_urlencoded = "0.7.1"
chrono = "0.4.20" chrono = "0.4.22"
url = "2.2.2" url = "2.2.2"
oauth2-types = { path = "../oauth2-types" } oauth2-types = { path = "../oauth2-types" }