interface-types/Cargo.toml

24 lines
680 B
TOML
Raw Normal View History

2019-09-11 21:51:20 +00:00
[package]
2020-08-14 16:26:20 +00:00
name = "wasmer-interface-types-fl"
version = "0.17.15"
2019-09-11 21:51:20 +00:00
description = "WebAssembly Interface Types library for Wasmer"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
edition = "2018"
[dependencies]
nom = "5.1"
wast = "8.0"
# `serde` is useful only to simplify the users' life. It is not
2020-04-03 12:46:59 +00:00
# required by WIT itself, is is used to cross the boundary between the
# host and WIT more easily, but it is not used inside Wasm.
2020-11-04 20:26:33 +00:00
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
2020-07-25 08:01:41 +00:00
serde_json = "1.0"
safe-transmute = "0.11.0"
2020-09-13 19:19:26 +00:00
log = "0.4.11"
[features]
2020-07-25 08:01:41 +00:00
default = ["serde"]