2019-09-11 21:51:20 +00:00
|
|
|
[package]
|
2020-08-14 16:26:20 +00:00
|
|
|
name = "wasmer-interface-types-fl"
|
2020-11-06 20:27:30 +00:00
|
|
|
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]
|
2020-02-20 11:15:23 +00:00
|
|
|
nom = "5.1"
|
2020-02-24 21:17:15 +00:00
|
|
|
wast = "8.0"
|
2020-04-02 11:53:10 +00:00
|
|
|
|
|
|
|
# `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"
|
2020-04-02 11:53:10 +00:00
|
|
|
|
|
|
|
[features]
|
2020-07-25 08:01:41 +00:00
|
|
|
default = ["serde"]
|