Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/it-lilo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "it-lilo"
version = "0.4.2"
version = "0.5.0"
authors = ["Fluence Labs"]
description = "Defines some helper utils for lifting/lowering IT"
edition = "2018"
Expand All @@ -11,8 +11,8 @@ name = "it_lilo"
path = "src/lib.rs"

[dependencies]
fluence-it-types = { path = "../it-types/", version = "0.3.3" }
it-memory-traits = { path = "../it-memory-traits", version = "0.3.2" }
fluence-it-types = { path = "../it-types/", version = "0.4.0" }
it-memory-traits = { path = "../it-memory-traits", version = "0.4.0" }

paste = "1.0.11"
thiserror = "1.0.38"
Expand Down
2 changes: 1 addition & 1 deletion crates/it-memory-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "it-memory-traits"
version = "0.3.2"
version = "0.4.0"
authors = ["Fluence Labs"]
description = "Defines traits that IT uses for accessing memory"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion crates/it-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluence-it-types"
version = "0.3.3"
version = "0.4.0"
description = "Definitions of IValue and IType"
authors = ["Fluence Labs"]
edition = "2018"
Expand Down
8 changes: 4 additions & 4 deletions wasmer-it/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "wasmer-interface-types-fl"
version = "0.25.0"
version = "0.26.0"
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.3", features = ["impls"] }
fluence-it-types = { path = "../crates/it-types", version = "0.4.0", features = ["impls"] }
it-to-bytes = { path = "../crates/to-bytes", version = "0.1.0" }
it-lilo = { path = "../crates/it-lilo", version = "0.4.2" }
it-memory-traits = { path = "../crates/it-memory-traits", version = "0.3.2" }
it-lilo = { path = "../crates/it-lilo", version = "0.5.0" }
it-memory-traits = { path = "../crates/it-memory-traits", version = "0.4.0" }

nom = "7.1"
wast = "53.0"
Expand Down