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
Bump chrono from 0.4.22 to 0.4.23
Bumps [chrono](https://github.com/chronotope/chrono) from 0.4.22 to 0.4.23. - [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.22...v0.4.23) --- 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:
committed by
Quentin Gliech
parent
76b359ba2c
commit
5b687cda4f
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -900,9 +900,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "chrono"
|
name = "chrono"
|
||||||
version = "0.4.22"
|
version = "0.4.23"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
|
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"iana-time-zone",
|
"iana-time-zone",
|
||||||
"js-sys",
|
"js-sys",
|
||||||
|
@ -10,7 +10,7 @@ async-trait = "0.1.58"
|
|||||||
axum = { version = "0.6.0-rc.2", features = ["headers"] }
|
axum = { version = "0.6.0-rc.2", features = ["headers"] }
|
||||||
axum-extra = { version = "0.4.0-rc.1", features = ["cookie-private"] }
|
axum-extra = { version = "0.4.0-rc.1", features = ["cookie-private"] }
|
||||||
bincode = "1.3.3"
|
bincode = "1.3.3"
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.23"
|
||||||
data-encoding = "2.3.2"
|
data-encoding = "2.3.2"
|
||||||
futures-util = "0.3.25"
|
futures-util = "0.3.25"
|
||||||
headers = "0.3.8"
|
headers = "0.3.8"
|
||||||
|
@ -15,7 +15,7 @@ anyhow = "1.0.66"
|
|||||||
|
|
||||||
schemars = { version = "0.8.11", features = ["url", "chrono"] }
|
schemars = { version = "0.8.11", features = ["url", "chrono"] }
|
||||||
figment = { version = "0.10.8", features = ["env", "yaml", "test"] }
|
figment = { version = "0.10.8", features = ["env", "yaml", "test"] }
|
||||||
chrono = { version = "0.4.22", features = ["serde"] }
|
chrono = { version = "0.4.23", features = ["serde"] }
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
ulid = { version = "1.0.0", features = ["serde"] }
|
ulid = { version = "1.0.0", features = ["serde"] }
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.23"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
serde = "1.0.147"
|
serde = "1.0.147"
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-graphql = { version = "4.0.16", features = ["chrono", "url"] }
|
async-graphql = { version = "4.0.16", features = ["chrono", "url"] }
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.23"
|
||||||
serde = { version = "1.0.147", features = ["derive"] }
|
serde = { version = "1.0.147", features = ["derive"] }
|
||||||
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
|
||||||
tokio = { version = "1.21.2", features = ["time"] }
|
tokio = { version = "1.21.2", features = ["time"] }
|
||||||
|
@ -43,7 +43,7 @@ serde_urlencoded = "0.7.1"
|
|||||||
argon2 = { version = "0.4.1", features = ["password-hash"] }
|
argon2 = { version = "0.4.1", features = ["password-hash"] }
|
||||||
|
|
||||||
# Various data types and utilities
|
# Various data types and utilities
|
||||||
chrono = { version = "0.4.22", features = ["serde"] }
|
chrono = { version = "0.4.23", features = ["serde"] }
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
mime = "0.3.16"
|
mime = "0.3.16"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.66"
|
anyhow = "1.0.66"
|
||||||
base64ct = { version = "1.5.3", features = ["std"] }
|
base64ct = { version = "1.5.3", features = ["std"] }
|
||||||
chrono = { version = "0.4.22", features = ["serde"] }
|
chrono = { version = "0.4.23", features = ["serde"] }
|
||||||
digest = "0.10.5"
|
digest = "0.10.5"
|
||||||
ecdsa = { version = "0.14.8", features = ["sign", "verify"] }
|
ecdsa = { version = "0.14.8", features = ["sign", "verify"] }
|
||||||
elliptic-curve = "0.12.3"
|
elliptic-curve = "0.12.3"
|
||||||
|
@ -14,7 +14,7 @@ url = { version = "2.3.1", features = ["serde"] }
|
|||||||
parse-display = "0.6.0"
|
parse-display = "0.6.0"
|
||||||
indoc = "1.0.7"
|
indoc = "1.0.7"
|
||||||
serde_with = { version = "2.0.1", features = ["chrono"] }
|
serde_with = { version = "2.0.1", features = ["chrono"] }
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.23"
|
||||||
sha2 = "0.10.6"
|
sha2 = "0.10.6"
|
||||||
data-encoding = "2.3.2"
|
data-encoding = "2.3.2"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = "1.21.2"
|
tokio = "1.21.2"
|
||||||
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] }
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] }
|
||||||
chrono = { version = "0.4.22", features = ["serde"] }
|
chrono = { version = "0.4.23", features = ["serde"] }
|
||||||
serde = { version = "1.0.147", features = ["derive"] }
|
serde = { version = "1.0.147", features = ["derive"] }
|
||||||
serde_json = "1.0.87"
|
serde_json = "1.0.87"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
|
@ -20,7 +20,7 @@ serde = { version = "1.0.147", features = ["derive"] }
|
|||||||
serde_json = "1.0.87"
|
serde_json = "1.0.87"
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
|
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.23"
|
||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
ulid = { version = "1.0.0", features = ["serde"] }
|
ulid = { version = "1.0.0", features = ["serde"] }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user