feat: update cli with bin name

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-06-09 22:03:32 +02:00
parent 77bbf6c855
commit 91ee9d4387
5 changed files with 8 additions and 13 deletions

View File

@@ -3,6 +3,11 @@ name = "cuddle_cli"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "cuddle"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
@@ -17,5 +22,5 @@ dirs = "4.0.0"
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["json"] }
log = { version = "0.4.17", features = ["std", "kv_unstable"] }
openssl = {version = "0.10", features = ["vendored"]}
openssl = { version = "0.10", features = ["vendored"] }
tera = "1.17.0"