2019-09-11 23:51:20 +02:00
|
|
|
[package]
|
2020-08-14 19:26:20 +03:00
|
|
|
name = "wasmer-interface-types-fl"
|
2020-11-10 20:17:49 +03:00
|
|
|
version = "0.17.19"
|
2019-09-11 23:51:20 +02: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 12:15:23 +01:00
|
|
|
nom = "5.1"
|
2020-02-24 13:17:15 -08:00
|
|
|
wast = "8.0"
|
2020-04-02 13:53:10 +02:00
|
|
|
|
|
|
|
# `serde` is useful only to simplify the users' life. It is not
|
2020-04-03 14:46:59 +02: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 23:26:33 +03:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
|
2020-07-25 11:01:41 +03:00
|
|
|
serde_json = "1.0"
|
|
|
|
safe-transmute = "0.11.0"
|
2020-09-13 22:19:26 +03:00
|
|
|
log = "0.4.11"
|
2020-04-02 13:53:10 +02:00
|
|
|
|
|
|
|
[features]
|
2020-07-25 11:01:41 +03:00
|
|
|
default = ["serde"]
|