From ecf4058e52d5370a165804fd84f072b99fcb582e Mon Sep 17 00:00:00 2001 From: konsti Date: Wed, 26 Jul 2023 22:44:53 +0200 Subject: [PATCH] Fix `cargo test -p ruff` (#6104) --- crates/ruff/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff/Cargo.toml b/crates/ruff/Cargo.toml index a9f679f640..4102ab4732 100644 --- a/crates/ruff/Cargo.toml +++ b/crates/ruff/Cargo.toml @@ -26,7 +26,7 @@ ruff_python_semantic = { path = "../ruff_python_semantic" } ruff_python_stdlib = { path = "../ruff_python_stdlib" } ruff_python_trivia = { path = "../ruff_python_trivia" } ruff_python_parser = { path = "../ruff_python_parser" } -ruff_source_file = { path = "../ruff_source_file" } +ruff_source_file = { path = "../ruff_source_file", features = ["serde"] } ruff_text_size = { workspace = true } annotate-snippets = { version = "0.9.1", features = ["color"] }