-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial wash up commit with command parsing (#25)
* Initial commit with much commented out tui code, REPL can interpret commands * initial commit of split terminal Initial commit of working logger toggle Cleaned up dependencies and comments * Information logs on command parse, less noisy logs version bump * remove extra crate * Structopt improvements, rudimentary host functionality * rename wascc-host to wasmcloud-host
- Loading branch information
1 parent
a57e56d
commit eb3877a
Showing
3 changed files
with
418 additions
and
3 deletions.
There are no files selected for viewing
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,13 +1,13 @@ | ||
[package] | ||
name = "wash-cli" | ||
version = "0.1.8" | ||
version = "0.1.10" | ||
authors = ["Brooks Townsend <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/wascc/wash" | ||
description = "waSCC Shell (wash) CLI tool" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["webassembly", "wascc", "wash"] | ||
keywords = ["webassembly", "wasmcloud", "wash"] | ||
categories = ["wasm", "command-line-utilities"] | ||
|
||
[badges] | ||
|
@@ -19,15 +19,24 @@ env_logger = "0.7.1" | |
serde_json = "1.0.59" | ||
serde = { version = "1.0.117", features = ["derive"] } | ||
crossbeam = "0.7.3" | ||
tui-logger = { version = "0.4.8", default-features = false, features = ["tui-crossterm"] } | ||
tui = { version = "0.12.0", default-features = false, features = ["crossterm"] } | ||
log = "0.4.11" | ||
crossterm = "0.18.2" | ||
unicode-width = "0.1.8" | ||
tokio = { version = "0.2.0" } | ||
nats = "0.8.5" | ||
spinners = "1.2.0" | ||
|
||
nkeys = "0.0.11" | ||
latticeclient = "0.4.0" | ||
wascap = "0.5.1" | ||
term-table = "1.3.0" | ||
provider-archive = "0.3.0" | ||
once_cell = "1.5.2" | ||
oci-distribution = { git = "https://github.com/brooksmtownsend/krustlet", branch = "oci-push" } | ||
wasmcloud-host = { git = "https://github.com/wasmcloud/wasmcloud", branch = "main" } | ||
|
||
|
||
[[bin]] | ||
name = "wash" | ||
|
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
Oops, something went wrong.