From b0068c5f09251cbccbdfadd531e649a42098d497 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Mon, 15 Jul 2024 12:02:17 +0200 Subject: [PATCH] cli: rename the CLI binary to from `topola-cli` to shorter `topola` --- Cargo.toml | 4 ++-- src/bin/{topola-cli => topola}/main.rs | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/bin/{topola-cli => topola}/main.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index d8f3063..853e8b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,13 +3,13 @@ name = "topola" description = "Topological PCB router" version = "0.1.0" edition = "2021" -default-run = "topola-egui" +default-run = "topola" [lib] name = "topola" [[bin]] -name = "topola-cli" +name = "topola" required-features = ["cli"] [[bin]] diff --git a/src/bin/topola-cli/main.rs b/src/bin/topola/main.rs similarity index 100% rename from src/bin/topola-cli/main.rs rename to src/bin/topola/main.rs