fix(plugin/runner): Pin version of virtual-fs (#8827)

This commit is contained in:
Donny/강동윤 2024-04-09 00:19:28 +09:00 committed by GitHub
parent 2d4eb96843
commit 089f61bc37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

7
Cargo.lock generated
View File

@ -1717,7 +1717,7 @@ dependencies = [
"httpdate",
"itoa",
"pin-project-lite",
"socket2 0.4.10",
"socket2 0.5.5",
"tokio",
"tower-service",
"tracing",
@ -5248,6 +5248,7 @@ dependencies = [
"testing",
"tokio",
"tracing",
"virtual-fs",
"wasmer",
"wasmer-cache",
"wasmer-compiler-cranelift",
@ -6034,9 +6035,9 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "virtual-fs"
version = "0.11.0"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a16a7893a16a31ef442ce86691e7060a19691fb7739387624f3dd07ec4c04b"
checksum = "6ce7b7674a3d0ddb5915b8f4feccdd6e8680c5980c296688e0f0e7378b8c69e1"
dependencies = [
"anyhow",
"async-trait",

View File

@ -55,6 +55,7 @@ serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
tokio = { version = "1", default-features = false, optional = true }
tracing = "0.1.40"
virtual-fs = { version = "=0.11.1", default-features = false }
wasmer = { version = "4.2.5", default-features = false }
wasmer-wasix = { version = "0.18.0", default-features = false }