Skip to content

Commit

Permalink
Update version to 4.3.6-linera.4 (wasmerio#3)
Browse files Browse the repository at this point in the history
Increment the fork version now that the pinned `wat` version has
changed.
  • Loading branch information
jvff authored Sep 24, 2024
1 parent fb1694c commit 5c86cc4
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer = { package = "linera-wasmer", version = "=4.3.6-linera.3", path = "lib/api", default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", version = "=4.3.6-linera.3", path = "lib/compiler", features = [
wasmer = { package = "linera-wasmer", version = "=4.3.6-linera.4", path = "lib/api", default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", version = "=4.3.6-linera.4", path = "lib/compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", version = "=4.3.6-linera.3", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", version = "=4.3.6-linera.3", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", version = "=4.3.6-linera.4", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", version = "=4.3.6-linera.4", path = "lib/compiler-singlepass", optional = true }
# wasmer-compiler-llvm = { version = "=4.3.6", path = "lib/compiler-llvm", optional = true }
# wasmer-emscripten = { version = "=4.3.6", path = "lib/emscripten", optional = true }
# wasmer-wasix = { path = "lib/wasix", optional = true }
Expand Down Expand Up @@ -119,7 +119,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { package = "linera-wasmer", version = "=4.3.6-linera.3", path = "lib/api", features = [
wasmer = { package = "linera-wasmer", version = "=4.3.6-linera.4", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
Expand Down
10 changes: 5 additions & 5 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.3.6-linera.3"
version = "4.3.6-linera.4"

#####
# This crate comes in 2 major flavors:
Expand Down Expand Up @@ -39,14 +39,14 @@ shared-buffer = { workspace = true }
# 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.3.6-linera.3" }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.3.6-linera.3" }
wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.3.6-linera.4" }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.3.6-linera.4" }
wasmer-derive = { path = "../derive", version = "=4.3.6" }
wasmer-types = { path = "../types", version = "=4.3.6" }
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.3.6-linera.3", optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", path = "../compiler-cranelift", version = "=4.3.6-linera.3", optional = true }
wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", path = "../compiler-singlepass", version = "=4.3.6-linera.4", optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", path = "../compiler-cranelift", version = "=4.3.6-linera.4", optional = true }
#wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.3.6", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-cranelift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.3.6-linera.3"
version = "4.3.6-linera.4"

[dependencies]
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.3.6-linera.3", features = ["translator", "compiler"], default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.3.6-linera.4", features = ["translator", "compiler"], default-features = false }
wasmer-types = { path = "../types", version = "=4.3.6", 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"] }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-singlepass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.3.6-linera.3"
version = "4.3.6-linera.4"

[dependencies]
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.3.6-linera.3", features = ["translator", "compiler"], default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.3.6-linera.4", features = ["translator", "compiler"], default-features = false }
wasmer-types = { path = "../types", version = "=4.3.6", default-features = false, features = ["std"] }
hashbrown = { version = "0.11", optional = true }
gimli = { version = "0.26", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.3.6-linera.3"
version = "4.3.6-linera.4"

[dependencies]
wasmer-types = { path = "../types", version = "=4.3.6", default-features = false }
Expand Down Expand Up @@ -40,7 +40,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.3.6-linera.3" }
wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.3.6-linera.4" }
region = { version = "3.0" }

[target.'cfg(target_os = "windows")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion lib/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.3.6-linera.3"
version = "4.3.6-linera.4"

[dependencies]
memoffset.workspace = true
Expand Down

0 comments on commit 5c86cc4

Please sign in to comment.