forked from wasmCloud/wascc-host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (48 loc) · 1.5 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
[package]
name = "wascc-host"
version = "0.7.0"
authors = ["Kevin Hoffman <[email protected]>"]
edition = "2018"
homepage = "https://wascc.dev"
repository = "https://github.com/wascc/wascc-host"
description = "WebAssembly Secure Capabilities Connector (waSCC) Host Runtime"
license = "Apache-2.0"
documentation = "https://docs.rs/wascc-host"
readme = "README.md"
keywords = ["webassembly", "wasm", "wasi", "wascc", "wapc"]
categories = ["wasm", "api-bindings","command-line-utilities"]
exclude = ["examples/.assets"]
[package.metadata.docs.rs]
features = [ "gantry", "manifest" ]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
libloading = "0.6.1"
crossbeam-channel = "0.4.2"
crossbeam = "0.7.3"
crossbeam-utils = "^0.7.0"
wapc = "0.7.0"
wascc-codec = "0.6.0"
wascap = "0.4.5"
log = "0.4.8"
rand = "0.7.3"
env_logger = "0.7.1"
uuid = { version = "0.8", features = ["serde", "v4"] }
gantryclient = { version = "0.0.4", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_yaml = { version = "0.8.11", optional = true }
serde_json = { version = "1.0", optional = true }
envmnt = { version = "0.8.2", optional = true }
structopt = { version = "0.3.14", optional = true }
[features]
default = []
manifest = ["serde", "serde_yaml", "serde_json", "envmnt"]
bin = ["structopt"]
gantry = ["gantryclient"]
[[example]]
name = "kvcounter_manifest"
required-features = ["manifest"]
[[bin]]
name = "wascc-host"
path = "src/bin.rs"
required-features = ["manifest", "bin"]