forked from wasmCloud/wash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 1.24 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "wash-cli"
version = "0.1.12"
authors = ["Brooks Townsend <[email protected]>"]
edition = "2018"
repository = "https://github.com/wasmcloud/wash"
description = "wasmCloud Shell (wash) CLI tool"
license = "Apache-2.0"
readme = "README.md"
keywords = ["webassembly", "wasmcloud", "wash"]
categories = ["wasm", "command-line-utilities"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
structopt = "0.3.18"
serde_json = { version = "1.0.60", features = ["raw_value"] }
serde = { version = "1.0.117", features = ["derive"] }
serdeconv = "0.4.0"
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"
actix-rt = "1.1.1"
spinners = "1.2.0"
nats = "0.8.6"
nkeys = "0.0.11"
wascap = "0.5.1"
term-table = "1.3.0"
provider-archive = "0.3.0"
oci-distribution = { git = "https://github.com/brooksmtownsend/krustlet", branch = "oci-push" }
control-interface = { git = "https://github.com/wasmcloud/wasmcloud", branch = "main"}
wasmcloud-host = { git = "https://github.com/wasmcloud/wasmcloud", branch = "main" }
[[bin]]
name = "wash"
path = "src/main.rs"
test = true
bench = true