From a7a213b3f24b3ba34f6e43f510f16422c2dbcf50 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 8 Dec 2021 05:09:12 -0600 Subject: [PATCH] add default-run so cargo r works (#451) --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 903b369de2..3d47a4f10b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ name = "engine-q" version = "0.1.0" edition = "2018" +default-run = "engine-q" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -103,4 +104,4 @@ required-features = ["gstat"] # Main nu binary [[bin]] name = "engine-q" -path = "src/main.rs" \ No newline at end of file +path = "src/main.rs"