From 29c130f326cfd490c9b98a9eb692a5a310ce456e Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Tue, 16 Jan 2024 18:31:24 -0500 Subject: [PATCH] Make `ruff` the default binary (#9558) ## Summary This makes `cargo run` equivalent to `cargo run -p ruff` which is almost always what you want. --- crates/ruff/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ruff/Cargo.toml b/crates/ruff/Cargo.toml index a7eb8a7ce8390..8022529d89b48 100644 --- a/crates/ruff/Cargo.toml +++ b/crates/ruff/Cargo.toml @@ -10,6 +10,7 @@ documentation = { workspace = true } repository = { workspace = true } license = { workspace = true } readme = "../../README.md" +default-run = "ruff" [dependencies] ruff_cache = { path = "../ruff_cache" }