From 7cb565e79a4116576e66349a55effe3df39e69f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Mar 2021 08:59:31 +0000 Subject: [PATCH] Bump regex from 1.4.3 to 1.4.5 Bumps [regex](https://github.com/rust-lang/regex) from 1.4.3 to 1.4.5. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.4.3...1.4.5) Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++------------ boa_cli/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7ed6f1c78de..d58e8e06994 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1002,14 +1002,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.4.3" +version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a" +checksum = "957056ecddbeba1b26965114e191d2e8589ce74db242b6ea25fc4062427a5c19" dependencies = [ "aho-corasick", "memchr", "regex-syntax", - "thread_local", ] [[package]] @@ -1246,15 +1245,6 @@ dependencies = [ "unicode-width", ] -[[package]] -name = "thread_local" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" -dependencies = [ - "lazy_static", -] - [[package]] name = "time" version = "0.1.44" diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index 9234aa30c11..37f22e608bb 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -18,7 +18,7 @@ rustyline-derive = "0.4.0" structopt = "0.3.21" serde_json = "1.0.64" colored = "2.0.0" -regex = "1.4.3" +regex = "1.4.5" lazy_static = "1.4.0" [features] diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 819e7bd3789..f7f9f89f8f7 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -17,7 +17,7 @@ serde = { version = "1.0.124", features = ["derive"] } serde_yaml = "0.8.17" serde_json = "1.0.64" bitflags = "1.2.1" -regex = "1.4.3" +regex = "1.4.5" once_cell = "1.7.2" colored = "2.0.0" fxhash = "0.2.1"