59 lines
2.4 KiB
Modula-2
59 lines
2.4 KiB
Modula-2
module github.com/kratisto/mam-contract
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/gin-contrib/cors v1.4.0
|
|
github.com/gin-gonic/gin v1.8.1
|
|
github.com/lib/pq v1.0.0
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/sirupsen/logrus v1.2.0
|
|
github.com/spf13/cobra v0.0.3
|
|
github.com/spf13/viper v1.3.2
|
|
google.golang.org/api v0.3.0
|
|
gopkg.in/go-playground/validator.v9 v9.31.0
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go v0.34.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.4.7 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.10.0 // indirect
|
|
github.com/goccy/go-json v0.9.7 // indirect
|
|
github.com/golang/protobuf v1.5.0 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/magiconair/properties v1.8.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mitchellh/mapstructure v1.1.2 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pelletier/go-toml v1.2.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
|
|
github.com/spf13/afero v1.1.2 // indirect
|
|
github.com/spf13/cast v1.3.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.0.0 // indirect
|
|
github.com/spf13/pflag v1.0.3 // indirect
|
|
github.com/ugorji/go/codec v1.2.7 // indirect
|
|
go.opencensus.io v0.19.2 // indirect
|
|
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
|
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421 // indirect
|
|
golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069 // indirect
|
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
google.golang.org/appengine v1.4.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19 // indirect
|
|
google.golang.org/grpc v1.19.0 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|