1[package]
2name = "lucet-module-wasmsbx"
3version = "0.1.1"
4description = "A structured interface for Lucet modules"
5homepage = "https://github.com/fastly/lucet"
6repository = "https://github.com/fastly/lucet"
7license = "Apache-2.0 WITH LLVM-exception"
8categories = ["wasm"]
9authors = ["Lucet team <lucet@fastly.com>"]
10edition = "2018"
11
12[dependencies]
13cranelift-entity = { path = "../cranelift/cranelift-entity", version = "0.41.0" }
14failure = "0.1"
15serde = { version = "1.0", features = ["derive"] }
16serde_json = "1.0"
17bincode = "1.1.4"
18num-derive = "0.3"
19num-traits = "0.2"
20# minisign = { version = "0.5.11", optional = true }
21object = ">=0.12, <0.18"
22byteorder = "1.3"
23
24[features]
25# default = ["signature_checking"]
26default = []
27signature_checking = []
28