surrealpatch/go.mod

68 lines
2.9 KiB
Modula-2
Raw Normal View History

2019-09-29 10:28:53 +00:00
module github.com/abcum/surreal
2021-10-05 07:17:50 +00:00
go 1.17
2019-09-29 10:28:53 +00:00
require (
2021-10-05 07:17:50 +00:00
cloud.google.com/go v0.97.0
cloud.google.com/go/errorreporting v0.1.0
cloud.google.com/go/logging v1.4.2
2020-11-16 08:48:02 +00:00
github.com/abcum/bump v0.0.0-20201116071400-31a74cba5f19
github.com/abcum/cork v0.0.0-20201116072055-6b3677fdfab1
2021-10-05 07:17:50 +00:00
github.com/abcum/fibre v0.0.0-20211005070429-9c53d8998428
2020-11-16 08:48:02 +00:00
github.com/abcum/rixxdb v0.0.0-20201116083534-c988f1e5d2bb
2021-10-05 07:17:50 +00:00
github.com/dgraph-io/ristretto v0.1.0
2019-09-29 10:28:53 +00:00
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/elithrar/simple-scrypt v1.3.0
2020-11-16 08:48:02 +00:00
github.com/gorilla/websocket v1.4.2
github.com/hjson/hjson-go v3.1.0+incompatible
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
2021-10-05 07:17:50 +00:00
github.com/pkg/profile v1.6.0
2019-09-29 10:28:53 +00:00
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be
2021-10-05 07:17:50 +00:00
github.com/rs/xid v1.3.0
2019-09-29 10:28:53 +00:00
github.com/satori/go.uuid v1.2.0
2021-10-05 07:17:50 +00:00
github.com/sergi/go-diff v1.2.0
github.com/sirupsen/logrus v1.8.1
2019-11-20 14:16:56 +00:00
github.com/smartystreets/goconvey v1.6.4
2021-10-05 07:17:50 +00:00
github.com/spf13/cobra v1.2.1
github.com/ugorji/go/codec v1.2.6
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/net v0.0.0-20211005001312-d4b1ae081e3b
golang.org/x/text v0.3.7
)
require (
github.com/abcum/tmpl v0.0.0-20190929092451-4b08f6027ed1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/googleapis/gax-go/v2 v2.1.0 // indirect
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/ory/graceful v0.1.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/segmentio/ksuid v1.0.3 // indirect
github.com/smartystreets/assertions v1.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/ugorji/go/codec/codecgen v1.2.6 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20211004093028-2c5d950f24ef // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
golang.org/x/tools v0.1.7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/api v0.57.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0 // indirect
google.golang.org/grpc v1.40.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
2019-09-29 10:28:53 +00:00
)