From 44ef49efa79918c76c0412a2b98d8301369ebb98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 May 2023 12:55:43 +0200 Subject: [PATCH] Bump chrono from 0.4.24 to 0.4.25 (#2977) Bumps [chrono](https://github.com/chronotope/chrono) from 0.4.24 to 0.4.25. - [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.24...v0.4.25) --- updated-dependencies: - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 +++++++++--- boa_engine/Cargo.toml | 2 +- boa_wasm/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb6e9f484c..3fc4a3bbfb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -60,6 +60,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + [[package]] name = "android_system_properties" version = "0.1.5" @@ -714,13 +720,13 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.24" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" +checksum = "fdbc37d37da9e5bce8173f3a41b71d9bf3c674deebbaceacd0ebdabde76efb03" dependencies = [ + "android-tzdata", "iana-time-zone", "js-sys", - "num-integer", "num-traits", "time 0.1.45", "wasm-bindgen", diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index 57bb5f6deb..ea433e02ed 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -64,7 +64,7 @@ num-integer = "0.1.45" bitflags = "2.3.1" indexmap = "1.9.3" ryu-js = "0.2.2" -chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] } +chrono = { version = "0.4.25", default-features = false, features = ["clock", "std"] } fast-float = "0.2.0" once_cell = "1.17.2" tap = "1.0.1" diff --git a/boa_wasm/Cargo.toml b/boa_wasm/Cargo.toml index 99d6f27ac4..dc77f01c5f 100644 --- a/boa_wasm/Cargo.toml +++ b/boa_wasm/Cargo.toml @@ -15,7 +15,7 @@ rust-version.workspace = true boa_engine.workspace = true wasm-bindgen = "0.2.86" getrandom = { version = "0.2.9", features = ["js"] } -chrono = { version = "0.4.24", features = ["clock", "std", "wasmbind"] } +chrono = { version = "0.4.25", features = ["clock", "std", "wasmbind"] } [features] default = ["boa_engine/annex-b"]