diff --git a/Cargo.lock b/Cargo.lock index d1eab5e81c1..c08df0ececd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1023,7 +1023,7 @@ dependencies = [ [[package]] name = "linera-wasmer" -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" dependencies = [ "anyhow", "bytes", @@ -1059,7 +1059,7 @@ dependencies = [ [[package]] name = "linera-wasmer-compiler" -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" dependencies = [ "backtrace", "bytes", @@ -1091,7 +1091,7 @@ dependencies = [ [[package]] name = "linera-wasmer-compiler-cranelift" -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -1110,7 +1110,7 @@ dependencies = [ [[package]] name = "linera-wasmer-compiler-singlepass" -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" dependencies = [ "byteorder", "dynasm", @@ -1129,7 +1129,7 @@ dependencies = [ [[package]] name = "linera-wasmer-vm" -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" dependencies = [ "backtrace", "cc", diff --git a/Cargo.toml b/Cargo.toml index bf1f8ca945b..a83033a66a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,12 +12,12 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.5", path = "lib/api", default-features = false } -wasmer-compiler = { package = "linera-wasmer-compiler", version = "=4.4.0-linera.5", path = "lib/compiler", features = [ +wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.6", path = "lib/api", default-features = false } +wasmer-compiler = { package = "linera-wasmer-compiler", version = "=4.4.0-linera.6", path = "lib/compiler", features = [ "compiler", ], optional = true } -wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", version = "=4.4.0-linera.5", path = "lib/compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", version = "=4.4.0-linera.5", path = "lib/compiler-singlepass", optional = true } +wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", version = "=4.4.0-linera.6", path = "lib/compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", version = "=4.4.0-linera.6", path = "lib/compiler-singlepass", optional = true } # wasmer-compiler-llvm = { version = "=4.4.0", path = "lib/compiler-llvm", optional = true } # wasmer-emscripten = { version = "=4.4.0", path = "lib/emscripten", optional = true } # wasmer-wasix = { path = "lib/wasix", optional = true } @@ -128,7 +128,7 @@ glob = "0.3" rustc_version = "0.4" [dev-dependencies] -wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.5", path = "lib/api", features = [ +wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.6", path = "lib/api", features = [ "compiler", "singlepass", "sys", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index bb41a4a7585..ddb87da76ac 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -10,7 +10,7 @@ homepage.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" ##### # This crate comes in 2 major flavors: @@ -43,14 +43,14 @@ loupe = { version = "0.1.3", optional = true, features = [ # Dependencies and Development Dependencies for `sys`. [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # - Mandatory dependencies for `sys`. -wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.5" } -wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.5" } +wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.6" } +wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.6" } wasmer-derive = { path = "../derive", version = "=4.4.0" } wasmer-types = { path = "../types", version = "=4.4.0" } target-lexicon = { version = "0.12.2", default-features = false } # - Optional dependencies for `sys`. -wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", path = "../compiler-singlepass", version = "=4.4.0-linera.5", optional = true } -wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", path = "../compiler-cranelift", version = "=4.4.0-linera.5", optional = true } +wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", path = "../compiler-singlepass", version = "=4.4.0-linera.6", optional = true } +wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", path = "../compiler-cranelift", version = "=4.4.0-linera.6", optional = true } #wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.4.0", optional = true } wasm-bindgen = { version = "0.2.74", optional = true } diff --git a/lib/compiler-cranelift/Cargo.toml b/lib/compiler-cranelift/Cargo.toml index d1b49c81be3..56d79c13b44 100644 --- a/lib/compiler-cranelift/Cargo.toml +++ b/lib/compiler-cranelift/Cargo.toml @@ -11,10 +11,10 @@ homepage.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" [dependencies] -wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.5", features = ["translator", "compiler"], default-features = false } +wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.6", features = ["translator", "compiler"], default-features = false } wasmer-types = { path = "../types", version = "=4.4.0", default-features = false, features = ["std"] } cranelift-entity = { version = "0.91.1", default-features = false } cranelift-codegen = { version = "0.91.1", default-features = false, features = ["x86", "arm64", "riscv64"] } diff --git a/lib/compiler-singlepass/Cargo.toml b/lib/compiler-singlepass/Cargo.toml index 49628f73514..3f875a4e062 100644 --- a/lib/compiler-singlepass/Cargo.toml +++ b/lib/compiler-singlepass/Cargo.toml @@ -11,10 +11,10 @@ homepage.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" [dependencies] -wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.5", features = ["translator", "compiler"], default-features = false } +wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.6", features = ["translator", "compiler"], default-features = false } wasmer-types = { path = "../types", version = "=4.4.0", default-features = false, features = ["std"] } hashbrown = { version = "0.11", optional = true } gimli = { version = "0.26", optional = true } diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index 6d48cb8e609..f0bc94f9f0b 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -10,7 +10,7 @@ homepage.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" [dependencies] wasmer-types = { path = "../types", version = "=4.4.0", default-features = false } @@ -45,7 +45,7 @@ shared-buffer = { workspace = true } libc.workspace = true [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.5" } +wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.6" } region = { version = "3.0" } [target.'cfg(target_os = "windows")'.dependencies] diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index cbfbaa40bf5..29014c3fea2 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -10,7 +10,7 @@ edition.workspace = true homepage.workspace = true repository.workspace = true rust-version.workspace = true -version = "4.4.0-linera.5" +version = "4.4.0-linera.6" [dependencies] memoffset.workspace = true