From ba01ac9292c8f4430e67c0ab82c74b5c2e64ac05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Mar 2021 05:11:45 +0000 Subject: [PATCH] chore(deps): bump regex from 1.4.3 to 1.4.4 Bumps [regex](https://github.com/rust-lang/regex) from 1.4.3 to 1.4.4. - [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.4) Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++------------ Cargo.toml | 4 ++-- xtask/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21d59010a5a..85f422fef0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -656,14 +656,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.4.3" +version = "1.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a" +checksum = "54fd1046a3107eb58f42de31d656fee6853e5d276c455fd943742dce89fc3dd3" dependencies = [ "aho-corasick", "memchr", "regex-syntax", - "thread_local", ] [[package]] @@ -811,15 +810,6 @@ dependencies = [ "syn", ] -[[package]] -name = "thread_local" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd" -dependencies = [ - "once_cell", -] - [[package]] name = "tokio" version = "1.3.0" diff --git a/Cargo.toml b/Cargo.toml index 3d398fa1cdd..e050efc7b69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ version = "0.11.1" anyhow = "1.0.38" itertools = "0.10.0" prettytable-rs = "0.8.0" -regex = "1.4.3" +regex = "1.4.4" [dev-dependencies] xshell = "0.1.9" @@ -40,7 +40,7 @@ futures = "0.3.13" is-root = "0.1.2" itertools = "0.10.0" lazy_static = "1.4.0" -regex = { version = "1.4.3", default-features = false, features = ["std", "perf"] } +regex = { version = "1.4.4", default-features = false, features = ["std", "perf"] } serde = { version = "1.0.124", features = ["derive"] } thiserror = "1.0.24" tokio = { version = "1.3.0", features = [ diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index b12bc04b8c2..15ef2c3d23d 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -10,6 +10,6 @@ version = "0.1.0" anyhow = "1.0.38" const_format = "0.2.13" pico-args = "0.4.0" -regex = { version = "1.4.3", default-features = false, features = ["std", "unicode-perl"] } +regex = { version = "1.4.4", default-features = false, features = ["std", "unicode-perl"] } xml-rs = "0.8.3" xshell = "0.1.9"