Compare commits

...

2 Commits

3 changed files with 18 additions and 3 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,8 +1,18 @@
[package]
name = "zap"
name = "zap-cli"
version = "0.1.0"
authors = ["R. Tyler Croy <rtyler@brokenco.de>"]
edition = "2018"
description = "A simple configuration management and orchestration tool"
homepage = "https://github.com/rtyler/zap"
repository = "https://github.com/rtyler/zap"
license = "AGPL-3.0+"
keywords = ["sysadmin", "management"]
[[bin]]
name = "zap"
path = "src/main.rs"
[dependencies]
colored = "2"
@ -16,4 +26,4 @@ serde_derive = "~1.0"
serde_json = "~1.0"
serde_yaml = "~0.8"
ssh2 = "~0.9.0"
zap-model = { path = "../model" }
zap-model = { version = "~0.1", path = "../model" }

View File

@ -3,6 +3,11 @@ name = "zap-model"
version = "0.1.0"
authors = ["R. Tyler Croy <rtyler@brokenco.de>"]
edition = "2018"
description = "Internal models for zap, a simple configuration management tool"
homepage = "https://github.com/rtyler/zap"
repository = "https://github.com/rtyler/zap"
license = "AGPL-3.0+"
keywords = ["sysadmin", "management"]
[dependencies]
handlebars = "~3.5"