From e88066885e8249114af712beb5b27555a4c1c169 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sat, 26 Aug 2023 17:44:24 -0400 Subject: [PATCH] Fix executable name Cargo typically forces the executable name to be identical to the name of the crate, which in this case is "cli". These config lines overwrite that behavior. --- cli/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 651b208..20c2e1b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -3,6 +3,9 @@ name = "cli" version = "0.1.0" edition = "2021" +[[bin]] +name = "ggelo" +path = "src/main.rs" [dependencies] schema.path = "../schema"