From 42bb4b55d302ca0dc1125c128b8ab79f786762b9 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Tue, 23 Jan 2024 19:49:35 -0800 Subject: [PATCH] Add default-run = fish to Cargo.toml This makes fish the default binary, so that "cargo run" will launch fish. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index cf5c40c73..8ee80d588 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ name = "fish" version = "0.1.0" edition.workspace = true rust-version.workspace = true +default-run = "fish" [dependencies] pcre2 = { git = "https://github.com/fish-shell/rust-pcre2", branch = "master", default-features = false, features = ["utf32"] }