Fix executable name

Cargo typically forces the executable name to be identical to the name
of the crate, which in this case is "cli". These config lines overwrite
that behavior.
This commit is contained in:
Kiana Sheibani 2023-08-26 17:44:24 -04:00
parent 19abce3b7a
commit e88066885e
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -3,6 +3,9 @@ name = "cli"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
[[bin]]
name = "ggelo"
path = "src/main.rs"
[dependencies] [dependencies]
schema.path = "../schema" schema.path = "../schema"