Rename the zap-cli package to allow for publishing to crates.io

This commit is contained in:
R Tyler Croy 2021-01-01 10:25:27 -08:00
parent 40ae75bff1
commit 56683f2288
2 changed files with 7 additions and 2 deletions

2
Cargo.lock generated
View File

@ -607,7 +607,7 @@ dependencies = [
]
[[package]]
name = "zap"
name = "zap-cli"
version = "0.1.0"
dependencies = [
"colored",

View File

@ -1,5 +1,5 @@
[package]
name = "zap"
name = "zap-cli"
version = "0.1.0"
authors = ["R. Tyler Croy <rtyler@brokenco.de>"]
edition = "2018"
@ -9,6 +9,11 @@ repository = "https://github.com/rtyler/zap"
license = "AGPL-3.0+"
keywords = ["sysadmin", "management"]
[[bin]]
name = "zap"
path = "src/main.rs"
[dependencies]
colored = "2"
gumdrop = "~0.8.0"