From 9b94b5648354dd1c7cce19e6a11d90a87b0edc4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 23:51:11 +0000 Subject: [PATCH] Bump regex from 1.9.0 to 1.9.1 Bumps [regex](https://github.com/rust-lang/regex) from 1.9.0 to 1.9.1. - [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.9.0...1.9.1) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- collectors/slurm/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff089870..6526245b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2176,13 +2176,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.9.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89089e897c013b3deb627116ae56a6955a72b8bed395c9526af31c9fe528b484" +checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.3.0", + "regex-automata 0.3.1", "regex-syntax 0.7.3", ] @@ -2197,9 +2197,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa250384981ea14565685dea16a9ccc4d1c541a13f82b9c168572264d1df8c56" +checksum = "e9aaecc05d5c4b5f7da074b9a0d1a0867e71fd36e7fc0482d8bcfe8e8fc56290" dependencies = [ "aho-corasick", "memchr", diff --git a/collectors/slurm/Cargo.toml b/collectors/slurm/Cargo.toml index bdaa18de..207da71e 100644 --- a/collectors/slurm/Cargo.toml +++ b/collectors/slurm/Cargo.toml @@ -41,7 +41,7 @@ config = "0.13.2" serde = { version = "1.0.166", features = ["derive"] } serde-aux = "4.2.0" itertools = "0.11.0" -regex = "1.9.0" +regex = "1.9.1" chrono = { version = "0.4.26", default-features = false } once_cell = "1.18.0" serde_with = { version = "3.0.0", features = ["chrono_0_4"] }