mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
52 lines
1.9 KiB
Modula-2
52 lines
1.9 KiB
Modula-2
module github.com/thatmattlove/hyperglass
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
code.cloudfoundry.org/bytefmt v0.0.0-20230612151507-41ef4d1f67a4
|
|
github.com/go-playground/validator/v10 v10.14.1
|
|
github.com/gofiber/fiber/v2 v2.48.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/k0kubun/pp/v3 v3.2.0
|
|
github.com/spf13/cobra v1.7.0
|
|
github.com/stretchr/testify v1.8.3
|
|
github.com/twitchtv/twirp v8.1.3+incompatible
|
|
go.etcd.io/bbolt v1.3.7
|
|
google.golang.org/protobuf v1.26.0
|
|
gorm.io/driver/sqlite v1.5.2
|
|
gorm.io/gorm v1.25.2
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/klauspost/compress v1.16.3 // indirect
|
|
github.com/kr/fs v0.1.0 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/leodido/go-urn v1.2.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.17 // indirect
|
|
github.com/melbahja/goph v1.3.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pkg/sftp v1.13.5 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.48.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/crypto v0.7.0 // indirect
|
|
golang.org/x/net v0.10.0 // indirect
|
|
golang.org/x/sys v0.10.0 // indirect
|
|
golang.org/x/text v0.9.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|