bump version to 0.7.0 for wasmer-config

This commit is contained in:
Ayush Jha
2024-09-02 22:06:48 +05:45
parent e8502a6abe
commit 0c43a6548a
6 changed files with 10 additions and 10 deletions

10
Cargo.lock generated
View File

@@ -6501,7 +6501,7 @@ dependencies = [
"tracing",
"url",
"uuid",
"wasmer-config 0.6.0",
"wasmer-config 0.7.0",
"webc",
]
@@ -6701,7 +6701,7 @@ dependencies = [
"wasmer-compiler-cranelift",
"wasmer-compiler-llvm",
"wasmer-compiler-singlepass",
"wasmer-config 0.6.0",
"wasmer-config 0.7.0",
"wasmer-emscripten",
"wasmer-object",
"wasmer-registry",
@@ -6849,7 +6849,7 @@ dependencies = [
[[package]]
name = "wasmer-config"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"anyhow",
"bytesize",
@@ -7043,7 +7043,7 @@ dependencies = [
"toml 0.5.11",
"tracing",
"url",
"wasmer-config 0.6.0",
"wasmer-config 0.7.0",
"wasmer-wasm-interface",
"wasmparser 0.121.2",
"webc",
@@ -7185,7 +7185,7 @@ dependencies = [
"wasm-bindgen-futures",
"wasm-bindgen-test",
"wasmer",
"wasmer-config 0.6.0",
"wasmer-config 0.7.0",
"wasmer-emscripten",
"wasmer-journal",
"wasmer-types",

View File

@@ -16,7 +16,7 @@ rust-version.workspace = true
[dependencies]
# Wasmer dependencies.
edge-schema.workspace = true
wasmer-config = { version = "0.6.0", path = "../config" }
wasmer-config = { version = "0.7.0", path = "../config" }
webc.workspace = true
# crates.io dependencies.

View File

@@ -171,7 +171,7 @@ serde = { version = "1.0.147", features = ["derive"] }
dirs = "4.0"
serde_json = { version = "1.0" }
target-lexicon = { version = "0.12", features = ["std"] }
wasmer-config = { version = "0.6.0", path = "../config" }
wasmer-config = { version = "0.7.0", path = "../config" }
indexmap = "1.9.2"
walkdir = "2.3.2"
regex = "1.6.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "wasmer-config"
version = "0.6.0"
version = "0.7.0"
description = "Configuration types for Wasmer."
edition.workspace = true
license.workspace = true

View File

@@ -49,7 +49,7 @@ tokio-tungstenite = {version = "0.21", features = ["rustls-tls-native-roots"]}
toml.workspace = true
tracing = "0.1.40"
url = "2.5.0"
wasmer-config = { version = "0.6.0", path = "../config" }
wasmer-config = { version = "0.7.0", path = "../config" }
wasmer-wasm-interface = { version = "4.3.6", path = "../wasm-interface", optional = true }
wasmparser = { workspace = true, optional = true }
whoami = "1.2.3"

View File

@@ -21,7 +21,7 @@ virtual-fs = { path = "../virtual-fs", version = "0.16.0", default-features = fa
virtual-net = { path = "../virtual-net", version = "0.8.0", default-features = false, features = ["rkyv"] }
wasmer-journal = { path = "../journal", version = "0.8.0", default-features = false }
wasmer-emscripten = { path = "../emscripten", version = "=4.3.6", optional = true }
wasmer-config = { version = "0.6.0", path = "../config" }
wasmer-config = { version = "0.7.0", path = "../config" }
http.workspace = true
dashmap.workspace = true