blob: 5dd20ba20af27e4e1cb1ed2f0153ffbf62de4211 (
plain)
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
|
[package]
name = "lucet-module-wasmsbx"
version = "0.1.1"
description = "A structured interface for Lucet modules"
homepage = "https://github.com/fastly/lucet"
repository = "https://github.com/fastly/lucet"
license = "Apache-2.0 WITH LLVM-exception"
categories = ["wasm"]
authors = ["Lucet team <lucet@fastly.com>"]
edition = "2018"
[dependencies]
cranelift-entity = { path = "../cranelift/cranelift-entity", version = "0.41.0" }
failure = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.1.4"
num-derive = "0.3"
num-traits = "0.2"
# minisign = { version = "0.5.11", optional = true }
object = ">=0.12, <0.18"
byteorder = "1.3"
[features]
# default = ["signature_checking"]
default = []
signature_checking = []
|