Skip to content

Commit

Permalink
Release 4.3.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maminrayej committed May 8, 2024
1 parent cc257d5 commit 5057edf
Show file tree
Hide file tree
Showing 31 changed files with 137 additions and 137 deletions.
74 changes: 37 additions & 37 deletions Cargo.lock

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

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

[dependencies]
wasmer = { version = "=4.3.0-alpha.1", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=4.3.0-alpha.1", path = "lib/compiler", features = [
wasmer = { version = "=4.3.0-beta.1", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=4.3.0-beta.1", path = "lib/compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { version = "=4.3.0-alpha.1", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=4.3.0-alpha.1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=4.3.0-alpha.1", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.3.0-alpha.1", path = "lib/emscripten", optional = true }
wasmer-compiler-cranelift = { version = "=4.3.0-beta.1", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=4.3.0-beta.1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=4.3.0-beta.1", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.3.0-beta.1", path = "lib/emscripten", optional = true }
wasmer-wasix = { path = "lib/wasix", optional = true }
wasmer-wast = { version = "=4.3.0-alpha.1", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=4.3.0-alpha.1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=4.3.0-alpha.1", path = "lib/cache", optional = true }
wasmer-types = { version = "=4.3.0-alpha.1", path = "lib/types" }
wasmer-middlewares = { version = "=4.3.0-alpha.1", path = "lib/middlewares", optional = true }
wasmer-wast = { version = "=4.3.0-beta.1", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=4.3.0-beta.1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=4.3.0-beta.1", path = "lib/cache", optional = true }
wasmer-types = { version = "=4.3.0-beta.1", path = "lib/types" }
wasmer-middlewares = { version = "=4.3.0-beta.1", path = "lib/middlewares", optional = true }

# Third party dependencies
cfg-if = "1.0"
Expand Down Expand Up @@ -84,7 +84,7 @@ homepage = "https://wasmer.io/"
license = "MIT"
repository = "https://github.com/wasmerio/wasmer"
rust-version = "1.73"
version = "4.3.0-alpha.1"
version = "4.3.0-beta.1"

[workspace.dependencies]
# Repo-local crates
Expand Down Expand Up @@ -114,7 +114,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { version = "=4.3.0-alpha.1", path = "lib/api", features = [
wasmer = { version = "=4.3.0-beta.1", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
Expand Down
22 changes: 11 additions & 11 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ shared-buffer = { workspace = true }
# Dependencies and Development Dependencies for `sys`.
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# - Mandatory dependencies for `sys`.
wasmer-vm = { path = "../vm", version = "=4.3.0-alpha.1" }
wasmer-compiler = { path = "../compiler", version = "=4.3.0-alpha.1" }
wasmer-derive = { path = "../derive", version = "=4.3.0-alpha.1" }
wasmer-types = { path = "../types", version = "=4.3.0-alpha.1" }
wasmer-vm = { path = "../vm", version = "=4.3.0-beta.1" }
wasmer-compiler = { path = "../compiler", version = "=4.3.0-beta.1" }
wasmer-derive = { path = "../derive", version = "=4.3.0-beta.1" }
wasmer-types = { path = "../types", version = "=4.3.0-beta.1" }
target-lexicon = { version = "0.12.2", default-features = false }
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.3.0-alpha.1", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=4.3.0-alpha.1", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.3.0-alpha.1", optional = true }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.3.0-beta.1", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=4.3.0-beta.1", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.3.0-beta.1", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
js-sys = { version = "0.3.51", optional = true }
Expand All @@ -62,15 +62,15 @@ winapi = "0.3"
wat = "1.0"
tempfile = "3.6.0"
anyhow = "1.0"
macro-wasmer-universal-test = { version = "4.3.0-alpha.1", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "4.3.0-beta.1", path = "./macro-wasmer-universal-test" }

# Dependencies and Develoment Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dependencies]
# - Mandatory dependencies for `js`.
wasmer-types = { path = "../types", version = "=4.3.0-alpha.1", default-features = false, features = ["std"] }
wasmer-types = { path = "../types", version = "=4.3.0-beta.1", default-features = false, features = ["std"] }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
wasmer-derive = { path = "../derive", version = "=4.3.0-alpha.1" }
wasmer-derive = { path = "../derive", version = "=4.3.0-beta.1" }
# - Optional dependencies for `js`.
wasmparser = { workspace = true, default-features = false, optional = true }
hashbrown = { version = "0.11", optional = true }
Expand All @@ -82,7 +82,7 @@ serde = { version = "1.0", features = ["derive"] }
wat = "1.0"
anyhow = "1.0"
wasm-bindgen-test = "0.3.0"
macro-wasmer-universal-test = { version = "4.3.0-alpha.1", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "4.3.0-beta.1", path = "./macro-wasmer-universal-test" }

# Specific to `js`.
#
Expand Down

0 comments on commit 5057edf

Please sign in to comment.