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.
This commit is contained in:
Martin von Zweigbergk 2021-01-03 10:37:47 -08:00
parent b40a40990b
commit 19adac7c50

View file

@ -12,6 +12,10 @@ readme = "README.md"
keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"] keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"]
categories = ["command-line-utilities", "development-tools"] categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "jj"
path = "src/main.rs"
[workspace] [workspace]
members = ["lib"] members = ["lib"]