From 5d78556665ff86e90505054e345f935feea5da86 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Thu, 11 Feb 2021 15:23:02 +1100 Subject: [PATCH] Give a more specific name to the CLI binary: `swap-cli` The current binary name is very generic `cli`. `swap-cli` better describes what this binary does. --- swap/Cargo.toml | 2 +- swap/src/bin/{cli.rs => swap_cli.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename swap/src/bin/{cli.rs => swap_cli.rs} (100%) diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 34bf5ecb..6bd8de00 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "XMR/BTC trustless atomic swaps." [[bin]] -name = "cli" +name = "swap_cli" [lib] name = "swap" diff --git a/swap/src/bin/cli.rs b/swap/src/bin/swap_cli.rs similarity index 100% rename from swap/src/bin/cli.rs rename to swap/src/bin/swap_cli.rs