From 19adac7c50b93508d7c43ec44fe0dc0a6455568f Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sun, 3 Jan 2021 10:37:47 -0800 Subject: [PATCH] cargo: set binary name to `jj`, not new crate name `jujube` I recently renamed the crate from `jj` to `jujube` because `jj` was taken on crates.io. I didn't realize that that would change the name of the binary. --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c76647a9b..6b8e61fe4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,10 @@ readme = "README.md" keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"] categories = ["command-line-utilities", "development-tools"] +[[bin]] +name = "jj" +path = "src/main.rs" + [workspace] members = ["lib"]