Skip to content

Commit

Permalink
Update parser to 23.2 release (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremyyang920 authored Feb 12, 2024
1 parent 302c9ad commit 4168c29
Show file tree
Hide file tree
Showing 164 changed files with 49,004 additions and 34,355 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21

- name: Build
run: go build -v ./...
Expand Down
20 changes: 12 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
module github.com/cockroachdb/cockroachdb-parser

go 1.18
go 1.21.1

toolchain go1.21.3

require (
github.com/bazelbuild/rules_go v0.46.0
github.com/biogo/store v0.0.0-20201120204734-aad293a2328f
github.com/blevesearch/snowballstem v0.9.0
github.com/cockroachdb/apd/v3 v3.1.0
Expand All @@ -21,26 +24,27 @@ require (
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/twpayne/go-geom v1.4.1
golang.org/x/text v0.3.7
golang.org/x/tools v0.2.0
golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3
golang.org/x/text v0.14.0
golang.org/x/tools v0.17.0
)

require (
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/getsentry/sentry-go v0.12.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
github.com/twpayne/go-kml v1.5.2 // indirect
golang.org/x/mod v0.6.0 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/sys v0.15.0 // indirect
google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84 // indirect
google.golang.org/grpc v1.38.0 // indirect
google.golang.org/protobuf v1.26.0 // indirect
google.golang.org/grpc v1.40.1 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
44 changes: 33 additions & 11 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 4168c29

Please sign in to comment.