-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructuring the file tree to make it easier to start adding "native…
… tasks" Some number of tasks I will want to be "builtin" and need to know a little bit more about the transport in order to make that work. The traits, they are coming. See #1
- Loading branch information
Showing
11 changed files
with
41 additions
and
31 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zap-cli" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = ["R. Tyler Croy <[email protected]>"] | ||
edition = "2018" | ||
description = "A simple configuration management and orchestration tool" | ||
|
@@ -13,17 +13,11 @@ keywords = ["sysadmin", "management"] | |
name = "zap" | ||
path = "src/main.rs" | ||
|
||
|
||
[dependencies] | ||
colored = "2" | ||
gumdrop = "~0.8.0" | ||
log = "0.4" | ||
pretty_env_logger = "0.4" | ||
# Needed for deserializing JSON messages _and_ managing our configuration | ||
# effectively | ||
serde = { version = "~1.0", features = ["derive", "rc"] } | ||
serde_derive = "~1.0" | ||
serde_json = "~1.0" | ||
serde_yaml = "~0.8" | ||
ssh2 = "~0.9.0" | ||
zap-model = { version = "~0.1", path = "../model" } | ||
zap-model = { version = "~0.2", path = "../model" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zap-model" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = ["R. Tyler Croy <[email protected]>"] | ||
edition = "2018" | ||
description = "Internal models for zap, a simple configuration management tool" | ||
|
@@ -10,7 +10,15 @@ license = "AGPL-3.0+" | |
keywords = ["sysadmin", "management"] | ||
|
||
[dependencies] | ||
colored = "2" | ||
handlebars = "~3.5" | ||
log = "0.4" | ||
pest = "~2.1" | ||
pest_derive = "~2.1" | ||
# Needed for deserializing JSON messages _and_ managing our configuration | ||
# effectively | ||
serde = { version = "~1.0", features = ["derive", "rc"] } | ||
serde_derive = "~1.0" | ||
serde_json = "~1.0" | ||
serde_yaml = "~0.8" | ||
ssh2 = "~0.9.0" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters