interface-types/wasmer-it/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

2020-12-21 10:35:37 +00:00
[package]
name = "wasmer-interface-types-fl"
2022-09-09 13:20:42 +00:00
version = "0.24.0"
2020-12-21 10:35:37 +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]
fluence-it-types = { path = "../crates/it-types", version = "0.3.1", features = ["impls"] }
2020-12-29 09:32:17 +00:00
it-to-bytes = { path = "../crates/to-bytes", version = "0.1.0" }
it-lilo = { path = "../crates/it-lilo", version = "0.4.0" }
it-memory-traits = { path = "../crates/it-memory-traits", version = "0.3.0" }
2020-12-21 10:35:37 +00:00
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", "rc"], optional = true }
serde_json = "1.0"
safe-transmute = "0.11.0"
log = "0.4.11"
2021-04-18 16:43:29 +00:00
itertools = "0.10.0"
2020-12-21 10:35:37 +00:00
2021-04-20 20:39:16 +00:00
thiserror = "1.0.24"
2022-09-09 13:20:42 +00:00
semver = "1.0.13"
2021-03-15 09:37:15 +00:00
2020-12-21 10:35:37 +00:00
[features]
default = ["serde"]