From 38455503fcabcaa65c64263a664e721a10a34ef0 Mon Sep 17 00:00:00 2001 From: Waleed Khan Date: Tue, 26 Apr 2022 10:50:29 -0700 Subject: [PATCH] build: set `default-run` to `jj` If not set, then `cargo run` produces this error: ``` error: `cargo run` could not determine which binary to run. Use the `--bin` option to specify a binary, or the `default-run` manifest key. available binaries: fake-diff-editor, fake-editor, jj ``` --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 1e53c3a1c..7cbc2036d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,7 @@ documentation = "https://docs.rs/jujutsu" readme = "README.md" keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"] categories = ["command-line-utilities", "development-tools"] +default-run = "jj" [[bin]] name = "jj"