File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ require (
27
27
)
28
28
29
29
require (
30
+ github.com/bytecodealliance/wasmtime-go/v12 v12.0.0 // indirect
30
31
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 // indirect
31
32
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
32
33
)
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLj
7
7
github.com/benbjohnson/clock v1.1.0 /go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA =
8
8
github.com/bytecodealliance/wasmtime-go/v11 v11.0.0 h1:SwLgbjbFpQ1tf5vIbWexaZABezBSL8WmzP+foLyi0lE =
9
9
github.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 =
10
12
github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I =
11
13
github.com/cockroachdb/apd v1.1.0 /go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ =
12
14
github.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 (
18
18
"runtime/trace"
19
19
"strings"
20
20
21
- wasmtime "github.com/bytecodealliance/wasmtime-go/v11 "
21
+ wasmtime "github.com/bytecodealliance/wasmtime-go/v12 "
22
22
"golang.org/x/sync/singleflight"
23
23
24
24
"github.com/sqlc-dev/sqlc/internal/info"
25
25
"github.com/sqlc-dev/sqlc/internal/plugin"
26
26
)
27
27
28
28
// This version must be updated whenever the wasmtime-go dependency is updated
29
- const wasmtimeVersion = `v11 .0.0`
29
+ const wasmtimeVersion = `v12 .0.0`
30
30
31
31
func cacheDir () (string , error ) {
32
32
cache := os .Getenv ("SQLCCACHE" )
You can’t perform that action at this time.
0 commit comments