File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ require (
2727)
2828
2929require (
30+ github.com/bytecodealliance/wasmtime-go/v12 v12.0.0 // indirect
3031 google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 // indirect
3132 google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
3233)
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLj
77github.com/benbjohnson/clock v1.1.0 /go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA =
88github.com/bytecodealliance/wasmtime-go/v11 v11.0.0 h1:SwLgbjbFpQ1tf5vIbWexaZABezBSL8WmzP+foLyi0lE =
99github.com/bytecodealliance/wasmtime-go/v11 v11.0.0 /go.mod h1:9btfEuCkOP7EDR9a7LqDXrfQ7dtWeGlDHt3buV5UyjY =
10+ github.com/bytecodealliance/wasmtime-go/v12 v12.0.0 h1:Wga02UaZXYF3p0LIeL5xFp09/RI7UhjfT2uB0mLrwlw =
11+ github.com/bytecodealliance/wasmtime-go/v12 v12.0.0 /go.mod h1:a3PRoftJxxUzkQvgjC6sv7pKyJJK0ZsFVmH+eeEKQC4 =
1012github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I =
1113github.com/cockroachdb/apd v1.1.0 /go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ =
1214github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e /go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4 =
Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ import (
1818 "runtime/trace"
1919 "strings"
2020
21- wasmtime "github.com/bytecodealliance/wasmtime-go/v11 "
21+ wasmtime "github.com/bytecodealliance/wasmtime-go/v12 "
2222 "golang.org/x/sync/singleflight"
2323
2424 "github.com/sqlc-dev/sqlc/internal/info"
2525 "github.com/sqlc-dev/sqlc/internal/plugin"
2626)
2727
2828// This version must be updated whenever the wasmtime-go dependency is updated
29- const wasmtimeVersion = `v11 .0.0`
29+ const wasmtimeVersion = `v12 .0.0`
3030
3131func cacheDir () (string , error ) {
3232 cache := os .Getenv ("SQLCCACHE" )
You can’t perform that action at this time.
0 commit comments