forked from wasmCloud/wasmCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
77 lines (69 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "wasmcloud"
version = "0.15.0"
authors = [
"Kevin Hoffman <[email protected]>",
]
edition = "2018"
default-run = "wasmcloud"
license-file = "LICENSE"
description = "A secure, distributed, WebAssembly actor model runtime for the cloud, edge, and everything in between"
repository = "https://github.com/wascc/wasccd"
documentation = "https://wascc.dev"
readme = "README.md"
keywords = [
"wasm",
"wasi",
"wascc",
"webassembly",
"actor",
]
categories = [
"wasm", "api-bindings", "command-line-utilities"
]
exclude = [
"demos/*",
".github/*",
".gitignore"
]
autotests = false
[[test]]
name = "integration"
path = "tests/lib.rs"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
wapc = { version = "0.10.1" }
log = "0.4.11"
env_logger = "0.8.2"
anyhow = "1.0.34"
wasmcloud-host = { path = "crates/wasmcloud-host" }
actix-rt = "1.1.1"
nats = "0.8.6"
[dev-dependencies]
rmp-serde = "0.14.4"
serde = {version = "1.0.117", features = ["derive"] }
serde_bytes = "0.11.5"
serde_json = "1.0.59"
provider-archive = "0.3.0"
redis = "0.17.0"
reqwest = { version = "0.10"}
uuid = { version = "0.8", features = ["serde", "v4"] }
nats = "0.8.5"
wascc-httpsrv = { git = "https://github.com/wascc/capability-providers", branch = "main", features = ["static_plugin"]}
wascc-redis = { git = "https://github.com/wascc/capability-providers", branch = "main", features = ["static_plugin"] }
control-interface = { path = "./crates/control-interface"}
ctor = "0.1.16"
wascap = "0.5.1"
futures = "0.3.6"
[workspace]
members = [
"crates/wasmcloud-host",
"crates/control-interface"
]
[[bin]]
name = "wasmcloud"
path = "src/wasmcloud.rs"
[[bin]]
name = "wasmcloud-lite"
path = "src/wasmcloud-lite.rs"