Skip to content

Commit

Permalink
Update 3.0.0-beta -> 3.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Sep 26, 2022
1 parent bb9b349 commit fef7564
Show file tree
Hide file tree
Showing 30 changed files with 144 additions and 144 deletions.
54 changes: 27 additions & 27 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-workspace"
version = "3.0.0-beta"
version = "3.0.0-beta.2"
description = "Wasmer workspace"
authors = ["Wasmer Engineering Team <[email protected]>"]
repository = "https://github.com/wasmerio/wasmer"
Expand All @@ -10,18 +10,18 @@ publish = false
autoexamples = false

[dependencies]
wasmer = { version = "=3.0.0-beta", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=3.0.0-beta", path = "lib/compiler", features = ["compiler"] }
wasmer-compiler-cranelift = { version = "=3.0.0-beta", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-beta", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-beta", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-beta", path = "lib/emscripten", optional = true }
wasmer-wasi = { version = "=3.0.0-beta", path = "lib/wasi", optional = true }
wasmer-wast = { version = "=3.0.0-beta", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=3.0.0-beta", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=3.0.0-beta", path = "lib/cache", optional = true }
wasmer-types = { version = "=3.0.0-beta", path = "lib/types" }
wasmer-middlewares = { version = "=3.0.0-beta", path = "lib/middlewares", optional = true }
wasmer = { version = "=3.0.0-beta.2", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=3.0.0-beta.2", path = "lib/compiler", features = ["compiler"] }
wasmer-compiler-cranelift = { version = "=3.0.0-beta.2", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-beta.2", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-beta.2", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-beta.2", path = "lib/emscripten", optional = true }
wasmer-wasi = { version = "=3.0.0-beta.2", path = "lib/wasi", optional = true }
wasmer-wast = { version = "=3.0.0-beta.2", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=3.0.0-beta.2", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=3.0.0-beta.2", path = "lib/cache", optional = true }
wasmer-types = { version = "=3.0.0-beta.2", path = "lib/types" }
wasmer-middlewares = { version = "=3.0.0-beta.2", path = "lib/middlewares", optional = true }
cfg-if = "1.0"

[workspace]
Expand Down Expand Up @@ -66,7 +66,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { version = "=3.0.0-beta", path = "lib/api", default-features = false, features = ["cranelift"] }
wasmer = { version = "=3.0.0-beta.2", path = "lib/api", default-features = false, features = ["cranelift"] }
anyhow = "1.0"
criterion = "0.3"
lazy_static = "1.4"
Expand Down
20 changes: 10 additions & 10 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer"
version = "3.0.0-beta"
version = "3.0.0-beta.2"
description = "High-performance WebAssembly runtime"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "runtime", "vm"]
Expand Down Expand Up @@ -34,15 +34,15 @@ tracing = { version = "0.1", optional = true }
# Dependencies and Development Dependencies for `sys`.
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# - Mandatory dependencies for `sys`.
wasmer-vm = { path = "../vm", version = "=3.0.0-beta" }
wasmer-compiler = { path = "../compiler", version = "=3.0.0-beta" }
wasmer-derive = { path = "../derive", version = "=3.0.0-beta" }
wasmer-types = { path = "../types", version = "=3.0.0-beta" }
wasmer-vm = { path = "../vm", version = "=3.0.0-beta.2" }
wasmer-compiler = { path = "../compiler", version = "=3.0.0-beta.2" }
wasmer-derive = { path = "../derive", version = "=3.0.0-beta.2" }
wasmer-types = { path = "../types", version = "=3.0.0-beta.2" }
target-lexicon = { version = "0.12.2", default-features = false }
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-beta", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.0.0-beta", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.0.0-beta", optional = true }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-beta.2", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.0.0-beta.2", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.0.0-beta.2", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
js-sys = { version = "0.3.51", optional = true }
Expand All @@ -60,11 +60,11 @@ macro-wasmer-universal-test = { version = "0.1.0", path = "./macro-wasmer-univer
# Dependencies and Develoment Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dependencies]
# - Mandatory dependencies for `js`.
wasmer-types = { path = "../types", version = "=3.0.0-beta", default-features = false, features = ["std"] }
wasmer-types = { path = "../types", version = "=3.0.0-beta.2", default-features = false, features = ["std"] }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
#web-sys = { version = "0.3.51", features = [ "console" ] }
wasmer-derive = { path = "../derive", version = "=3.0.0-beta" }
wasmer-derive = { path = "../derive", version = "=3.0.0-beta.2" }
# - Optional dependencies for `js`.
wasmparser = { version = "0.83", default-features = false, optional = true }
hashbrown = { version = "0.11", optional = true }
Expand Down
20 changes: 10 additions & 10 deletions lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-c-api"
version = "3.0.0-beta"
version = "3.0.0-beta.2"
description = "Wasmer C API library"
categories = ["wasm", "api-bindings"]
keywords = ["wasm", "webassembly", "runtime"]
Expand All @@ -22,15 +22,15 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"]
[dependencies]
# We rename `wasmer` to `wasmer-api` to avoid the conflict with this
# library name (see `[lib]`).
wasmer-api = { version = "=3.0.0-beta", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=3.0.0-beta", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-beta", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-beta", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-beta", path = "../emscripten", optional = true }
wasmer-compiler = { version = "=3.0.0-beta", path = "../compiler" }
wasmer-middlewares = { version = "=3.0.0-beta", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=3.0.0-beta", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=3.0.0-beta", path = "../types" }
wasmer-api = { version = "=3.0.0-beta.2", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=3.0.0-beta.2", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-beta.2", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-beta.2", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-beta.2", path = "../emscripten", optional = true }
wasmer-compiler = { version = "=3.0.0-beta.2", path = "../compiler" }
wasmer-middlewares = { version = "=3.0.0-beta.2", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=3.0.0-beta.2", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=3.0.0-beta.2", path = "../types" }
enumset = "1.0.2"
cfg-if = "1.0"
lazy_static = "1.4"
Expand Down
6 changes: 3 additions & 3 deletions lib/cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-cache"
version = "3.0.0-beta"
version = "3.0.0-beta.2"
description = "Cache system for Wasmer WebAssembly runtime"
categories = ["wasm", "caching"]
keywords = ["wasm", "webassembly", "cache"]
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmer = { path = "../api", version = "=3.0.0-beta", default-features = false, features = ["sys"] }
wasmer = { path = "../api", version = "=3.0.0-beta.2", default-features = false, features = ["sys"] }
hex = "0.4"
thiserror = "1"
blake3 = "1.0"
Expand All @@ -20,7 +20,7 @@ blake3 = "1.0"
criterion = "0.3"
tempfile = "3"
rand = "0.8.3"
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-beta" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-beta.2" }

[features]
default = ["wasmer/js-serializable-module", "wasmer/compiler", "filesystem"]
Expand Down
Loading

0 comments on commit fef7564

Please sign in to comment.