Add default-run = fish to Cargo.toml

This makes fish the default binary, so that "cargo run" will launch fish.
This commit is contained in:
ridiculousfish 2024-01-23 19:49:35 -08:00
parent f7b57065db
commit 42bb4b55d3

View file

@ -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"] }