From 35d4e03f2a05c55fe103896225c7b7806c9d8595 Mon Sep 17 00:00:00 2001 From: Jonathan Plasse <13716151+JonathanPlasse@users.noreply.github.com> Date: Sun, 19 Feb 2023 19:02:08 +0100 Subject: [PATCH] Fix ruff_dev regex workspace dependency (#3037) --- crates/ruff_dev/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_dev/Cargo.toml b/crates/ruff_dev/Cargo.toml index 8680f8abf2..0f8c06794a 100644 --- a/crates/ruff_dev/Cargo.toml +++ b/crates/ruff_dev/Cargo.toml @@ -11,7 +11,7 @@ clap = { workspace = true } itertools = { workspace = true } libcst = { workspace = true } once_cell = { workspace = true } -regex.workspace = true +regex = { workspace = true } ruff = { path = "../ruff" } ruff_cli = { path = "../ruff_cli" } rustpython-common = { workspace = true }