diff --git a/go.mod b/go.mod index 8ca7fea93..4b3d184b1 100644 --- a/go.mod +++ b/go.mod @@ -30,7 +30,7 @@ require ( require ( github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc - github.com/bytecodealliance/wasmtime-go/v22 v22.0.1 + github.com/bytecodealliance/wasmtime-go/v25 v25.0.0 github.com/k0kubun/pp v3.0.1+incompatible github.com/kodova/html-to-markdown v1.0.1 github.com/onflow/crypto v0.25.0 diff --git a/go.sum b/go.sum index 407a16d50..e229bf4a0 100644 --- a/go.sum +++ b/go.sum @@ -5,8 +5,8 @@ github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3 github.com/andybalholm/cascadia v1.0.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y= github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bytecodealliance/wasmtime-go/v22 v22.0.1 h1:/wWcvXyffeWeDQQte3Db/fHVEov8HhxfVJ43gz9xVcM= -github.com/bytecodealliance/wasmtime-go/v22 v22.0.1/go.mod h1:knqkvjTLavLtAXnA5NJUM0qbRiPJCVWPLXfYu75kZSo= +github.com/bytecodealliance/wasmtime-go/v25 v25.0.0 h1:ZTn4Ho+srrk0466ugqPfTDCITczsWdT48A0ZMA/TpRU= +github.com/bytecodealliance/wasmtime-go/v25 v25.0.0/go.mod h1:8mMIYQ92CpVDwXPIb6udnhtFGI3vDZ/937cGeQr5I68= github.com/c-bata/go-prompt v0.2.6 h1:POP+nrHE+DfLYx370bedwNhsqmpCUynWPxuHi0C5vZI= github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= diff --git a/runtime/webassembly.go b/runtime/webassembly.go index 49ceec796..c67745264 100644 --- a/runtime/webassembly.go +++ b/runtime/webassembly.go @@ -21,7 +21,7 @@ package runtime import ( "fmt" - "github.com/bytecodealliance/wasmtime-go/v22" + "github.com/bytecodealliance/wasmtime-go/v25" "github.com/onflow/cadence/runtime/common" "github.com/onflow/cadence/runtime/errors" diff --git a/vm/vm.go b/vm/vm.go index 46da42ad0..fd981f828 100644 --- a/vm/vm.go +++ b/vm/vm.go @@ -27,7 +27,7 @@ import ( "C" - "github.com/bytecodealliance/wasmtime-go/v22" + "github.com/bytecodealliance/wasmtime-go/v25" "github.com/onflow/cadence/runtime/interpreter" )