mirror of
https://github.com/fluencelabs/interface-types
synced 2024-12-04 15:20:20 +00:00
20 lines
609 B
TOML
20 lines
609 B
TOML
[package]
|
|
name = "wasmer-interface-types"
|
|
version = "0.16.2"
|
|
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
|
|
# 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.
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
[features]
|
|
default = ["serde"] |