From f14e2800a211712a0e7ce0d2fe8c8223e5647900 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 08:34:19 +0000 Subject: [PATCH] Bump aho-corasick from 1.1.1 to 1.1.2 Bumps [aho-corasick](https://github.com/BurntSushi/aho-corasick) from 1.1.1 to 1.1.2. - [Commits](https://github.com/BurntSushi/aho-corasick/compare/1.1.1...1.1.2) --- updated-dependencies: - dependency-name: aho-corasick dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/ruff_linter/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff4a1590fc40f6..5352e3146e4af9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,9 +28,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] diff --git a/crates/ruff_linter/Cargo.toml b/crates/ruff_linter/Cargo.toml index 62b477bfd0f724..82adab2d2817c7 100644 --- a/crates/ruff_linter/Cargo.toml +++ b/crates/ruff_linter/Cargo.toml @@ -29,7 +29,7 @@ ruff_python_parser = { path = "../ruff_python_parser" } ruff_source_file = { path = "../ruff_source_file", features = ["serde"] } ruff_text_size = { path = "../ruff_text_size" } -aho-corasick = { version = "1.1.1" } +aho-corasick = { version = "1.1.2" } annotate-snippets = { version = "0.9.1", features = ["color"] } anyhow = { workspace = true } bitflags = { workspace = true }