From 4b915cf9fe41947c7019d02194a69ed3339f5153 Mon Sep 17 00:00:00 2001 From: Kevin Fleming Date: Mon, 15 Jun 2020 22:59:41 +0900 Subject: [PATCH] Fix binary name Leaving out the [[bin]] section in Cargo.toml resulted in a binary name of "main" --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f414c2d..3fe3ad1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rhc" -version = "0.1.0" +version = "0.1.1" authors = ["Kevin Fleming "] edition = "2018" license = "MIT OR Apache-2.0" @@ -14,6 +14,10 @@ exclude = [ "screenshots/*", ] +[[bin]] +name = "rhc" +path = "src/bin/main.rs" + [dependencies] anyhow = "1.0.28" attohttpc = { version = "0.13.0", features = ["json", "form", "charsets"] }