From dd36a2516e969fa78b91da8be5da095a318fb3fb Mon Sep 17 00:00:00 2001 From: konsti Date: Sun, 8 Oct 2023 15:47:13 +0200 Subject: [PATCH] Make serde a default feature of ruff_python_formatter (#7825) This makes `cargo test -p ruff_python_formatter` actually run the tests again --- crates/ruff_python_formatter/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_python_formatter/Cargo.toml b/crates/ruff_python_formatter/Cargo.toml index 2e2a6501972e6..14e2ed5c846d1 100644 --- a/crates/ruff_python_formatter/Cargo.toml +++ b/crates/ruff_python_formatter/Cargo.toml @@ -52,6 +52,6 @@ test = true required-features = ["serde"] [features] +default = ["serde"] serde = ["dep:serde", "ruff_formatter/serde", "ruff_source_file/serde", "ruff_python_ast/serde"] schemars = ["dep:schemars", "ruff_formatter/schemars"] -default = []