Skip to content

Commit

Permalink
Upgrade wasmtime to v7 (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
javorszky committed Mar 28, 2023
1 parent b56c021 commit 79d21dd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -3,7 +3,7 @@ module github.com/suborbital/e2core
go 1.20

require (
github.com/bytecodealliance/wasmtime-go v1.0.0
github.com/bytecodealliance/wasmtime-go/v7 v7.0.0
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.5.0
github.com/labstack/echo/v4 v4.10.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -40,8 +40,8 @@ github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v
github.com/Microsoft/hcsshim v0.9.7 h1:mKNHW/Xvv1aFH87Jb6ERDzXTJTLPlmzfZ28VBFD/bfg=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
github.com/bytecodealliance/wasmtime-go v1.0.0 h1:9u9gqaUiaJeN5IoD1L7egD8atOnTGyJcNp8BhkL9cUU=
github.com/bytecodealliance/wasmtime-go v1.0.0/go.mod h1:jjlqQbWUfVSbehpErw3UoWFndBXRRMvfikYH6KsCwOg=
github.com/bytecodealliance/wasmtime-go/v7 v7.0.0 h1:/rBNjgFju2HCZnkPb1eL+W4GBwP8DMbaQu7i+GR9DH4=
github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA=
github.com/cenkalti/backoff/v4 v4.2.0 h1:HN5dHm3WBOgndBH6E8V0q2jIYIR3s9yglV8k/+MN3u4=
github.com/cenkalti/backoff/v4 v4.2.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
Expand Down
2 changes: 1 addition & 1 deletion sat/engine2/runtime/instance/instance.go
@@ -1,7 +1,7 @@
package instance

import (
"github.com/bytecodealliance/wasmtime-go"
"github.com/bytecodealliance/wasmtime-go/v7"
"github.com/pkg/errors"

"github.com/suborbital/e2core/foundation/scheduler"
Expand Down
2 changes: 1 addition & 1 deletion sat/engine2/runtime/pool.go
Expand Up @@ -3,7 +3,7 @@ package runtime
import (
"sync"

"github.com/bytecodealliance/wasmtime-go"
"github.com/bytecodealliance/wasmtime-go/v7"
"github.com/pkg/errors"

"github.com/suborbital/e2core/foundation/scheduler"
Expand Down

0 comments on commit 79d21dd

Please sign in to comment.