mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 20:58:28 +00:00
bump version to 0.7.0 for wasmer-config
This commit is contained in:
10
Cargo.lock
generated
10
Cargo.lock
generated
@@ -6501,7 +6501,7 @@ dependencies = [
|
|||||||
"tracing",
|
"tracing",
|
||||||
"url",
|
"url",
|
||||||
"uuid",
|
"uuid",
|
||||||
"wasmer-config 0.6.0",
|
"wasmer-config 0.7.0",
|
||||||
"webc",
|
"webc",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -6701,7 +6701,7 @@ dependencies = [
|
|||||||
"wasmer-compiler-cranelift",
|
"wasmer-compiler-cranelift",
|
||||||
"wasmer-compiler-llvm",
|
"wasmer-compiler-llvm",
|
||||||
"wasmer-compiler-singlepass",
|
"wasmer-compiler-singlepass",
|
||||||
"wasmer-config 0.6.0",
|
"wasmer-config 0.7.0",
|
||||||
"wasmer-emscripten",
|
"wasmer-emscripten",
|
||||||
"wasmer-object",
|
"wasmer-object",
|
||||||
"wasmer-registry",
|
"wasmer-registry",
|
||||||
@@ -6849,7 +6849,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasmer-config"
|
name = "wasmer-config"
|
||||||
version = "0.6.0"
|
version = "0.7.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bytesize",
|
"bytesize",
|
||||||
@@ -7043,7 +7043,7 @@ dependencies = [
|
|||||||
"toml 0.5.11",
|
"toml 0.5.11",
|
||||||
"tracing",
|
"tracing",
|
||||||
"url",
|
"url",
|
||||||
"wasmer-config 0.6.0",
|
"wasmer-config 0.7.0",
|
||||||
"wasmer-wasm-interface",
|
"wasmer-wasm-interface",
|
||||||
"wasmparser 0.121.2",
|
"wasmparser 0.121.2",
|
||||||
"webc",
|
"webc",
|
||||||
@@ -7185,7 +7185,7 @@ dependencies = [
|
|||||||
"wasm-bindgen-futures",
|
"wasm-bindgen-futures",
|
||||||
"wasm-bindgen-test",
|
"wasm-bindgen-test",
|
||||||
"wasmer",
|
"wasmer",
|
||||||
"wasmer-config 0.6.0",
|
"wasmer-config 0.7.0",
|
||||||
"wasmer-emscripten",
|
"wasmer-emscripten",
|
||||||
"wasmer-journal",
|
"wasmer-journal",
|
||||||
"wasmer-types",
|
"wasmer-types",
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ rust-version.workspace = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
# Wasmer dependencies.
|
# Wasmer dependencies.
|
||||||
edge-schema.workspace = true
|
edge-schema.workspace = true
|
||||||
wasmer-config = { version = "0.6.0", path = "../config" }
|
wasmer-config = { version = "0.7.0", path = "../config" }
|
||||||
webc.workspace = true
|
webc.workspace = true
|
||||||
|
|
||||||
# crates.io dependencies.
|
# crates.io dependencies.
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ serde = { version = "1.0.147", features = ["derive"] }
|
|||||||
dirs = "4.0"
|
dirs = "4.0"
|
||||||
serde_json = { version = "1.0" }
|
serde_json = { version = "1.0" }
|
||||||
target-lexicon = { version = "0.12", features = ["std"] }
|
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"
|
indexmap = "1.9.2"
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
regex = "1.6.0"
|
regex = "1.6.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-config"
|
name = "wasmer-config"
|
||||||
version = "0.6.0"
|
version = "0.7.0"
|
||||||
description = "Configuration types for Wasmer."
|
description = "Configuration types for Wasmer."
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ tokio-tungstenite = {version = "0.21", features = ["rustls-tls-native-roots"]}
|
|||||||
toml.workspace = true
|
toml.workspace = true
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
url = "2.5.0"
|
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 }
|
wasmer-wasm-interface = { version = "4.3.6", path = "../wasm-interface", optional = true }
|
||||||
wasmparser = { workspace = true, optional = true }
|
wasmparser = { workspace = true, optional = true }
|
||||||
whoami = "1.2.3"
|
whoami = "1.2.3"
|
||||||
|
|||||||
@@ -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"] }
|
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-journal = { path = "../journal", version = "0.8.0", default-features = false }
|
||||||
wasmer-emscripten = { path = "../emscripten", version = "=4.3.6", optional = true }
|
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
|
http.workspace = true
|
||||||
dashmap.workspace = true
|
dashmap.workspace = true
|
||||||
|
|||||||
Reference in New Issue
Block a user