Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support JSON data type #80

Merged
merged 3 commits into from
Nov 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,24 @@ module go.mercari.io/yo
go 1.15

require (
cloud.google.com/go v0.81.0
cloud.google.com/go/spanner v1.5.1
github.com/MakeNowJust/memefish v0.0.0-20210803005546-e411e939b85c
cloud.google.com/go v0.97.0
cloud.google.com/go/spanner v1.27.0
github.com/MakeNowJust/memefish v0.0.0-20211014154734-dbfb8b28907d
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813
github.com/google/go-cmp v0.5.5
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/go-cmp v0.5.6
github.com/jessevdk/go-assets v0.0.0-20160921144138-4f4301a06e15
github.com/jinzhu/inflection v1.0.0
github.com/k0kubun/pp v3.0.2-0.20190719145753-b20d3da80efa+incompatible // indirect
github.com/kenshaw/snaker v0.1.0
github.com/spf13/cobra v1.2.0
golang.org/x/tools v0.1.2
google.golang.org/api v0.44.0
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
google.golang.org/grpc v1.38.0
golang.org/x/net v0.0.0-20211020060615-d418f374d309 // indirect
golang.org/x/sys v0.0.0-20211020174200-9d6173849985 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.5
google.golang.org/api v0.59.0
google.golang.org/genproto v0.0.0-20211021150943-2b146023228c
google.golang.org/grpc v1.41.0
google.golang.org/protobuf v1.27.1
gopkg.in/yaml.v2 v2.4.0
)
Loading