48 lines
2.0 KiB
Modula-2
48 lines
2.0 KiB
Modula-2
module github.com/zhang2092/gohelpers
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/aead/chacha20poly1305 v0.0.0-20201124145622-1a5aba2a8b29
|
|
github.com/denisenkom/go-mssqldb v0.12.0
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/gin-gonic/gin v1.7.7
|
|
github.com/google/uuid v1.3.0
|
|
github.com/lib/pq v1.10.4
|
|
github.com/natefinch/lumberjack v2.0.0+incompatible
|
|
github.com/o1egl/paseto v1.0.0
|
|
github.com/stretchr/testify v1.7.0
|
|
go.uber.org/zap v1.19.1
|
|
golang.org/x/crypto v0.0.0-20210915214749-c084706c2272
|
|
golang.org/x/net v0.0.0-20210916014120-12bc252f5db8
|
|
golang.org/x/text v0.3.7
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.1.0 // indirect
|
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
|
|
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.13.0 // indirect
|
|
github.com/go-playground/universal-translator v0.17.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.4.1 // indirect
|
|
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
|
|
github.com/golang-sql/sqlexp v0.0.0-20170517235910-f1bb20e5a188 // indirect
|
|
github.com/golang/protobuf v1.3.3 // indirect
|
|
github.com/json-iterator/go v1.1.9 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/ugorji/go/codec v1.1.7 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.7.0 // indirect
|
|
golang.org/x/sys v0.0.0-20210915083310-ed5796bab164 // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|