From b7b6bd23b927c38811668a5085518d15ae281eec Mon Sep 17 00:00:00 2001 From: Valerie Date: Tue, 13 Feb 2024 17:02:52 -0500 Subject: [PATCH] set binary name for crates.io package --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 05a0854..14db2eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,10 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[[bin]] +name = "pride" +path = "src/main.rs" + [dependencies] pico-args = "0.5.0" termion = "2.0.1"