From 92f039b82d28686d26fdb36d01b7c728f241f9fc Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Wed, 25 Oct 2023 10:53:40 +0900 Subject: [PATCH] refactor: rename stef-cli crates binary to stef Although the package is named `stef-cli` to not clash with the `stef` library crate, the binary should still be named `stef`. --- crates/stef-cli/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/stef-cli/Cargo.toml b/crates/stef-cli/Cargo.toml index b418934..648a3fc 100644 --- a/crates/stef-cli/Cargo.toml +++ b/crates/stef-cli/Cargo.toml @@ -9,6 +9,10 @@ homepage.workspace = true repository.workspace = true license.workspace = true +[[bin]] +name = "stef" +path = "src/main.rs" + [dependencies] clap = { version = "4.4.6", features = ["derive", "wrap_help"] } color-eyre.workspace = true