Skip to content

Commit

Permalink
Fix binary name
Browse files Browse the repository at this point in the history
Leaving out the [[bin]] section in Cargo.toml resulted in a binary
name of "main"
  • Loading branch information
ktfleming committed Jun 15, 2020
1 parent 804c541 commit 4b915cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rhc"
version = "0.1.0"
version = "0.1.1"
authors = ["Kevin Fleming <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"] }
Expand Down

0 comments on commit 4b915cf

Please sign in to comment.