From 5b687cda4f3ccbf2c7225e2b964e127929b0b721 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:01:56 +0000 Subject: [PATCH] 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] --- Cargo.lock | 4 ++-- crates/axum-utils/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/data-model/Cargo.toml | 2 +- crates/graphql/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- crates/jose/Cargo.toml | 2 +- crates/oauth2-types/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/templates/Cargo.toml | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59aa2a12..1befc1d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -900,9 +900,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.22" +version = "0.4.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" +checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" dependencies = [ "iana-time-zone", "js-sys", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index ce66a8e6..304ace66 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -10,7 +10,7 @@ async-trait = "0.1.58" axum = { version = "0.6.0-rc.2", features = ["headers"] } axum-extra = { version = "0.4.0-rc.1", features = ["cookie-private"] } bincode = "1.3.3" -chrono = "0.4.22" +chrono = "0.4.23" data-encoding = "2.3.2" futures-util = "0.3.25" headers = "0.3.8" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 01e854ee..f0964187 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -15,7 +15,7 @@ anyhow = "1.0.66" schemars = { version = "0.8.11", features = ["url", "chrono"] } 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"] } ulid = { version = "1.0.0", features = ["serde"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index a84eb29f..189c6615 100644 --- a/crates/data-model/Cargo.toml +++ b/crates/data-model/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -chrono = "0.4.22" +chrono = "0.4.23" thiserror = "1.0.37" serde = "1.0.147" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 5678b6a6..011d0b23 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] async-graphql = { version = "4.0.16", features = ["chrono", "url"] } -chrono = "0.4.22" +chrono = "0.4.23" serde = { version = "1.0.147", features = ["derive"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } tokio = { version = "1.21.2", features = ["time"] } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index e68ae5e6..139a45eb 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -43,7 +43,7 @@ serde_urlencoded = "0.7.1" argon2 = { version = "0.4.1", features = ["password-hash"] } # 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"] } mime = "0.3.16" rand = "0.8.5" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index a1e37964..72f87782 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.66" 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" ecdsa = { version = "0.14.8", features = ["sign", "verify"] } elliptic-curve = "0.12.3" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 72b25a9b..8b47d72b 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -14,7 +14,7 @@ url = { version = "2.3.1", features = ["serde"] } parse-display = "0.6.0" indoc = "1.0.7" serde_with = { version = "2.0.1", features = ["chrono"] } -chrono = "0.4.22" +chrono = "0.4.23" sha2 = "0.10.6" data-encoding = "2.3.2" thiserror = "1.0.37" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 05f7aaa1..569a1231 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] tokio = "1.21.2" 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_json = "1.0.87" thiserror = "1.0.37" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index e3dbed97..ad676fa4 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -20,7 +20,7 @@ serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.87" serde_urlencoded = "0.7.1" -chrono = "0.4.22" +chrono = "0.4.23" url = "2.3.1" ulid = { version = "1.0.0", features = ["serde"] }