From cca420f07c18ed739bfad0c25d8af2b1fbb9358e Mon Sep 17 00:00:00 2001 From: Valery Antopol Date: Tue, 14 Feb 2023 18:09:01 +0300 Subject: [PATCH] chore: bump crate versions (#36) --- Cargo.lock | 8 ++++---- crates/it-lilo/Cargo.toml | 6 +++--- crates/it-memory-traits/Cargo.toml | 2 +- crates/it-types/Cargo.toml | 2 +- wasmer-it/Cargo.toml | 8 ++++---- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4ec827c..ef73c59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "fluence-it-types" -version = "0.3.3" +version = "0.4.0" dependencies = [ "it-to-bytes", "nom", @@ -27,7 +27,7 @@ dependencies = [ [[package]] name = "it-lilo" -version = "0.4.2" +version = "0.5.0" dependencies = [ "fluence-it-types", "it-memory-traits", @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "it-memory-traits" -version = "0.3.2" +version = "0.4.0" dependencies = [ "thiserror", ] @@ -236,7 +236,7 @@ dependencies = [ [[package]] name = "wasmer-interface-types-fl" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fluence-it-types", "it-lilo", diff --git a/crates/it-lilo/Cargo.toml b/crates/it-lilo/Cargo.toml index 597f37a..b63ee7a 100644 --- a/crates/it-lilo/Cargo.toml +++ b/crates/it-lilo/Cargo.toml @@ -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" @@ -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" diff --git a/crates/it-memory-traits/Cargo.toml b/crates/it-memory-traits/Cargo.toml index 6ceb6d1..fce0d93 100644 --- a/crates/it-memory-traits/Cargo.toml +++ b/crates/it-memory-traits/Cargo.toml @@ -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" diff --git a/crates/it-types/Cargo.toml b/crates/it-types/Cargo.toml index 0bfd9b3..7e15889 100644 --- a/crates/it-types/Cargo.toml +++ b/crates/it-types/Cargo.toml @@ -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" diff --git a/wasmer-it/Cargo.toml b/wasmer-it/Cargo.toml index b3c1af9..a1d321d 100644 --- a/wasmer-it/Cargo.toml +++ b/wasmer-it/Cargo.toml @@ -1,6 +1,6 @@ [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 "] @@ -8,10 +8,10 @@ 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"