From 256872010670e25e4dc9588b40d2f8d419354129 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Aug 2022 19:39:20 +0000 Subject: [PATCH] Bump chrono from 0.4.19 to 0.4.20 Bumps [chrono](https://github.com/chronotope/chrono) from 0.4.19 to 0.4.20. - [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.19...v0.4.20) --- updated-dependencies: - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 ++++--- crates/axum-utils/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/data-model/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 +- 9 files changed, 12 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6978a6ca..eeb4703e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -754,15 +754,16 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.19" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" +checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" dependencies = [ - "libc", + "js-sys", "num-integer", "num-traits", "serde", "time 0.1.44", + "wasm-bindgen", "winapi", ] diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index f7bc92e0..6df07674 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -10,7 +10,7 @@ async-trait = "0.1.57" axum = { version = "0.5.13", features = ["headers"] } axum-extra = { version = "0.3.6", features = ["cookie-private"] } bincode = "1.3.3" -chrono = "0.4.19" +chrono = "0.4.20" data-encoding = "2.3.2" futures-util = "0.3.21" headers = "0.3.7" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 5aa23f34..f25a2c09 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -15,7 +15,7 @@ anyhow = "1.0.59" schemars = { version = "0.8.10", features = ["url", "chrono"] } figment = { version = "0.10.6", features = ["env", "yaml", "test"] } -chrono = { version = "0.4.19", features = ["serde"] } +chrono = { version = "0.4.20", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } serde = { version = "1.0.142", features = ["derive"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index 94ab5e42..dfafc5f6 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.19" +chrono = "0.4.20" thiserror = "1.0.32" serde = "1.0.142" url = { version = "2.2.2", features = ["serde"] } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 5bb1a7c9..d9e7abf6 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -48,7 +48,7 @@ crc = "3.0.0" # Various data types and utilities data-encoding = "2.3.2" -chrono = { version = "0.4.19", features = ["serde"] } +chrono = { version = "0.4.20", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } mime = "0.3.16" rand = "0.8.5" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 92631b0d..c31a0227 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" anyhow = "1.0.59" async-trait = "0.1.57" base64ct = { version = "1.5.1", features = ["std"] } -chrono = { version = "0.4.19", features = ["serde"] } +chrono = { version = "0.4.20", features = ["serde"] } crypto-mac = { version = "0.11.1", features = ["std"] } digest = "0.10.3" ecdsa = { version = "0.14.3", features = ["sign", "verify", "pem", "pkcs8"] } diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 3c4f28b4..dcc867a9 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -14,7 +14,7 @@ url = { version = "2.2.2", features = ["serde"] } parse-display = "0.5.5" indoc = "1.0.7" serde_with = { version = "2.0.0", features = ["chrono"] } -chrono = "0.4.19" +chrono = "0.4.20" sha2 = "0.10.2" data-encoding = "2.3.2" thiserror = "1.0.32" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 19a26441..72309cbe 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] tokio = "1.20.1" sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] } -chrono = { version = "0.4.19", features = ["serde"] } +chrono = { version = "0.4.20", features = ["serde"] } serde = { version = "1.0.142", features = ["derive"] } serde_json = "1.0.83" thiserror = "1.0.32" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 2878e629..c8421ec0 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -20,7 +20,7 @@ serde = { version = "1.0.142", features = ["derive"] } serde_json = "1.0.83" serde_urlencoded = "0.7.1" -chrono = "0.4.19" +chrono = "0.4.20" url = "2.2.2" oauth2-types = { path = "../oauth2-types" }