2020-12-21 10:35:37 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-interface-types-fl"
|
2024-01-25 12:36:49 +00:00
|
|
|
version = "0.28.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]
|
2023-03-21 16:44:54 +00:00
|
|
|
fluence-it-types = { path = "../crates/it-types", version = "0.4.1", features = ["impls"] }
|
2020-12-29 09:32:17 +00:00
|
|
|
it-to-bytes = { path = "../crates/to-bytes", version = "0.1.0" }
|
2024-01-25 12:36:49 +00:00
|
|
|
it-lilo = { path = "../crates/it-lilo", version = "0.7.0" }
|
2024-01-25 12:59:59 +00:00
|
|
|
it-memory-traits = { path = "../crates/it-memory-traits", version = "0.5.0" }
|
2020-12-21 10:35:37 +00:00
|
|
|
|
2023-11-02 15:05:57 +00:00
|
|
|
anyhow = "1.0.75"
|
2022-09-16 15:06:31 +00:00
|
|
|
nom = "7.1"
|
2023-03-21 14:51:24 +00:00
|
|
|
# do not update wast, new versions expect different wit syntax
|
|
|
|
wast = "8.0"
|
2020-12-21 10:35:37 +00:00
|
|
|
|
|
|
|
# `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"
|
2022-09-09 16:54:12 +00:00
|
|
|
safe-transmute = "0.11.2"
|
|
|
|
log = "0.4.17"
|
2022-11-28 15:53:31 +00:00
|
|
|
itertools = "0.10.5"
|
2024-01-25 11:43:07 +00:00
|
|
|
futures = "0.3.29"
|
|
|
|
paste = "1.0.14"
|
2020-12-21 10:35:37 +00:00
|
|
|
|
2022-12-26 18:01:44 +00:00
|
|
|
thiserror = "1.0.38"
|
|
|
|
semver = "1.0.16"
|
2021-03-15 09:37:15 +00:00
|
|
|
|
2020-12-21 10:35:37 +00:00
|
|
|
[features]
|
|
|
|
default = ["serde"]
|